qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-trivial] [PATCH] net/tap-win32: Fix compiler warning caused by mis


From: Stefan Weil
Subject: [Qemu-trivial] [PATCH] net/tap-win32: Fix compiler warning caused by missing include statement
Date: Wed, 17 Oct 2012 19:53:50 +0200

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 <address@hidden>
---
 net/tap-win32.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/net/tap-win32.c b/net/tap-win32.c
index f1801e2..22dad3f 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"
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]