diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-03-22 11:38:14 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-04-18 23:46:48 +0200 |
commit | 17a38eaa2fdbb9add961e974fdb1b0ca8260813c (patch) | |
tree | c57e16e9edb6001fc9878cb7851194b58609d476 /qemu-monitor.hx | |
parent | cc601cb785bbbd1a017d05d69763cd2c2e1ca3a4 (diff) |
monitor: convert do_device_del() to QObject, QError
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r-- | qemu-monitor.hx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx index 5308f364e7..d290b4b57f 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -589,7 +589,8 @@ ETEXI .args_type = "id:s", .params = "device", .help = "remove device", - .mhandler.cmd = do_device_del, + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_device_del, }, STEXI |