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>
master
Stefan Weil 2012-10-17 19:53:50 +02:00 committed by Stefan Hajnoczi
parent abab1a0f32
commit 08778b3983
1 changed files with 1 additions and 0 deletions

View File

@ -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"