From: Jan Kiszka Date: Thu, 1 Mar 2012 09:43:50 +0000 (+0100) Subject: usb: Fix signature of stub usb_host_device_open X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=41e37c33fc5897ff8015af8e0e3f5eb13c394b51;p=qemu.git usb: Fix signature of stub usb_host_device_open This was a breakage of 3741715cf2. Signed-off-by: Jan Kiszka Acked-by: Gerd Hoffmann Signed-off-by: Blue Swirl --- diff --git a/usb-stub.c b/usb-stub.c index 9c3fceab1f..b4e10c12ca 100644 --- a/usb-stub.c +++ b/usb-stub.c @@ -41,7 +41,7 @@ void usb_host_info(Monitor *mon) } /* XXX: modify configure to compile the right host driver */ -USBDevice *usb_host_device_open(const char *devname) +USBDevice *usb_host_device_open(USBBus *bus, const char *devname) { return NULL; }