diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-02-19 12:40:00 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-02-19 12:40:00 +0000 |
commit | 4081fccf14166c018a5694c9c0679496de69b679 (patch) | |
tree | a27a8f75fa3c4bc64189cfb8f9afbce82216e19a /tap-win32.c | |
parent | be9d365723740a8bf4f11d2eb3e9099c99019a57 (diff) |
WIn32 compile fix.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1764 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tap-win32.c')
-rw-r--r-- | tap-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-win32.c b/tap-win32.c index 32baf22da2..b6056955c0 100644 --- a/tap-win32.c +++ b/tap-win32.c @@ -671,7 +671,7 @@ int tap_win32_init(VLANState *vlan, const char *ifname) return -1; } - s->vc = qemu_new_vlan_client(vlan, tap_receive, s); + s->vc = qemu_new_vlan_client(vlan, tap_receive, NULL, s); snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: ifname=%s", ifname); |