Skip to content

Commit

Permalink
net: Add missing include statement (fix compiler warnings for MinGW)
Browse files Browse the repository at this point in the history
These and some more compiler warnings were caused by a recent commit:

net/tap-win32.c:724: warning: no previous prototype for ‘tap_has_ufo’
net/tap-win32.c:729: warning: no previous prototype for ‘tap_has_vnet_hdr’
...

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
  • Loading branch information
stweil authored and blueswirl committed Dec 22, 2012
1 parent 4ad549e commit b213614
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions net/tap-win32.c
Expand Up @@ -31,6 +31,7 @@
#include "qemu-common.h"
#include "clients.h" /* net_init_tap */
#include "net/net.h"
#include "net/tap.h" /* tap_has_ufo, ... */
#include "sysemu/sysemu.h"
#include "qemu/error-report.h"
#include <stdio.h>
Expand Down

0 comments on commit b213614

Please sign in to comment.