diff options
| author | Stefan Weil <sw@weilnetz.de> | 2012-10-17 19:53:50 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2012-10-19 10:39:35 +0200 |
| commit | 08778b398328c4978e6e6bed023e37a3141dba84 (patch) | |
| tree | 491be944fadc5acfff8bea8edfcb13b41a52286f | |
| parent | abab1a0f32e44cb4e6c317e24d1705f182b88cd0 (diff) | |
| download | focaccia-qemu-08778b398328c4978e6e6bed023e37a3141dba84.tar.gz focaccia-qemu-08778b398328c4978e6e6bed023e37a3141dba84.zip | |
net/tap-win32: Fix compiler warning caused by missing include statement
The include file for net_init_tap was missing: net/tap-win32.c:703: warning: no previous prototype for ‘net_init_tap’ Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
| -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 f1801e22d2..22dad3f8fb 100644 --- a/net/tap-win32.c +++ b/net/tap-win32.c @@ -29,6 +29,7 @@ #include "tap.h" #include "qemu-common.h" +#include "clients.h" /* net_init_tap */ #include "net.h" #include "sysemu.h" #include "qemu-error.h" |