summaryrefslogtreecommitdiff
path: root/hw/usb/host-stub.c
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2013-01-18 23:48:10 +0100
committerBlue Swirl <blauwirbel@gmail.com>2013-01-19 10:30:02 +0000
commitc1db29199e3caf5cd56daad08b8926ffa97da136 (patch)
tree6db4800dd366225a44c27d48f75bc9c86b1fe1d4 /hw/usb/host-stub.c
parent249fe3f3e99c2a57c7f2569edb4031e63e595c9e (diff)
downloadqemu-c1db29199e3caf5cd56daad08b8926ffa97da136.tar.gz
usb: Fix compilation for MinGW (regression)
84f2d0ea added an argument to function usb_host_info. The stub function must match the declaration in usb.h. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/usb/host-stub.c')
-rw-r--r--hw/usb/host-stub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/host-stub.c b/hw/usb/host-stub.c
index 58423a0f5c..8affba76c1 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");
}