Signed-off-by: Laszlo Ersek <ler...@redhat.com> --- hw/qdev-monitor.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/qdev-monitor.c b/hw/qdev-monitor.c index 4fa64c9..728aa24 100644 --- a/hw/qdev-monitor.c +++ b/hw/qdev-monitor.c @@ -359,7 +359,7 @@ static BusState *qbus_find_recursive(BusState *bus, const char *name, return NULL; } -static BusState *qbus_find(const char *path) +static BusState *qbus_find(const char *path, Error **errp) { DeviceState *dev; BusState *bus; @@ -489,7 +489,7 @@ DeviceState *qdev_device_add(QemuOpts *opts) /* find bus */ path = qemu_opt_get(opts, "bus"); if (path != NULL) { - bus = qbus_find(path); + bus = qbus_find(path, NULL); if (!bus) { return NULL; } -- 1.7.1