From patchwork Fri Jan 18 22:48:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: usb: Fix compilation for MinGW (regression) Date: Fri, 18 Jan 2013 12:48:10 -0000 From: Stefan Weil X-Patchwork-Id: 213759 Message-Id: <1358549290-23228-1-git-send-email-sw@weilnetz.de> To: qemu-trivial@nongnu.org Cc: Stefan Weil , Luiz Capitulino , qemu-devel@nongnu.org, Wenchao Xia 84f2d0ea added an argument to function usb_host_info. The stub function must match the declaration in usb.h. Signed-off-by: Stefan Weil --- hw/usb/host-stub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/usb/host-stub.c b/hw/usb/host-stub.c index 58423a0..8affba7 100644 --- a/hw/usb/host-stub.c +++ b/hw/usb/host-stub.c @@ -35,7 +35,7 @@ #include "hw/usb.h" #include "monitor/monitor.h" -void usb_host_info(Monitor *mon) +void usb_host_info(Monitor *mon, const QDict *qdict) { monitor_printf(mon, "USB host devices not supported\n"); }