diff options
Diffstat (limited to 'usb-stub.c')
-rw-r--r-- | usb-stub.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usb-stub.c b/usb-stub.c index 52105c3952..9c3fceab1f 100644 --- a/usb-stub.c +++ b/usb-stub.c @@ -33,10 +33,11 @@ #include "qemu-common.h" #include "console.h" #include "hw/usb.h" +#include "monitor.h" -void usb_host_info(void) +void usb_host_info(Monitor *mon) { - term_printf("USB host devices not supported\n"); + monitor_printf(mon, "USB host devices not supported\n"); } /* XXX: modify configure to compile the right host driver */ |