Commit 4081fccf14166c018a5694c9c0679496de69b679

Authored by pbrook
1 parent be9d3657

WIn32 compile fix.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1764 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
tap-win32.c
... ... @@ -671,7 +671,7 @@ int tap_win32_init(VLANState *vlan, const char *ifname)
671 671 return -1;
672 672 }
673 673  
674   - s->vc = qemu_new_vlan_client(vlan, tap_receive, s);
  674 + s->vc = qemu_new_vlan_client(vlan, tap_receive, NULL, s);
675 675  
676 676 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
677 677 "tap: ifname=%s", ifname);
... ...