diff options
| author | Stefan Weil | 2012-12-20 23:09:53 +0100 |
|---|---|---|
| committer | Blue Swirl | 2012-12-22 13:05:46 +0100 |
| commit | b2136140f68ce05122f611eb9cde4f0365ab6a00 (patch) | |
| tree | e5d15005238bd48e12641eaec68a3ae5f7e97cfb /net | |
| parent | xen: add missing include (diff) | |
| download | qemu-b2136140f68ce05122f611eb9cde4f0365ab6a00.tar.gz qemu-b2136140f68ce05122f611eb9cde4f0365ab6a00.tar.xz qemu-b2136140f68ce05122f611eb9cde4f0365ab6a00.zip | |
net: Add missing include statement (fix compiler warnings for MinGW)
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>
Diffstat (limited to 'net')
| -rw-r--r-- | net/tap-win32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tap-win32.c b/net/tap-win32.c index 0c63cbd203..265369c3c5 100644 --- a/net/tap-win32.c +++ b/net/tap-win32.c @@ -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> |
