From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F6gSM-00023y-H7 for qemu-devel@nongnu.org; Tue, 07 Feb 2006 22:57:29 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F6gSK-00022q-4h for qemu-devel@nongnu.org; Tue, 07 Feb 2006 22:57:25 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F6gSJ-00022n-VB for qemu-devel@nongnu.org; Tue, 07 Feb 2006 22:57:24 -0500 Received: from [211.5.2.69] (helo=nm01omta015.dion.ne.jp) by monty-python.gnu.org with smtp (Exim 4.52) id 1F6gVY-0000wR-6Q for qemu-devel@nongnu.org; Tue, 07 Feb 2006 23:00:44 -0500 Message-ID: <001701c62c63$c36fb420$0464a8c0@athlon> From: "Kazu" Subject: [Qemu-devel] Compile fix for win32 Date: Wed, 8 Feb 2006 12:57:21 +0900 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi, It is compile fix for win32. Regards, Kazu Index: tap-win32.c =================================================================== RCS file: /sources/qemu/qemu/tap-win32.c,v retrieving revision 1.1 diff -u -r1.1 tap-win32.c --- tap-win32.c 1 Feb 2006 23:06:55 -0000 1.1 +++ tap-win32.c 7 Feb 2006 07:25:02 -0000 @@ -671,7 +671,7 @@ 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);