aboutsummaryrefslogtreecommitdiff
path: root/include/monitor
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>2019-12-05 20:46:18 +0300
committerMarkus Armbruster <armbru@redhat.com>2019-12-18 08:36:16 +0100
commit187c614767cdb3407bc67acf77b9b1a0d985a39d (patch)
tree67fb2937afba0a5c40fcd6f3954ed62d8f6c6429 /include/monitor
parent49fbc7236dd203f9c6afa87454f603a9236a0b3b (diff)
downloadqemu-187c614767cdb3407bc67acf77b9b1a0d985a39d.zip
qemu-187c614767cdb3407bc67acf77b9b1a0d985a39d.tar.gz
qemu-187c614767cdb3407bc67acf77b9b1a0d985a39d.tar.bz2
hmp: drop Error pointer indirection in hmp_handle_error
We don't need Error **, as all callers pass local Error object, which isn't used after the call. Use Error * instead. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20191205174635.18758-5-vsementsov@virtuozzo.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'include/monitor')
-rw-r--r--include/monitor/hmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/monitor/hmp.h b/include/monitor/hmp.h
index a0e9511..3d32985 100644
--- a/include/monitor/hmp.h
+++ b/include/monitor/hmp.h
@@ -16,7 +16,7 @@
#include "qemu/readline.h"
-void hmp_handle_error(Monitor *mon, Error **errp);
+void hmp_handle_error(Monitor *mon, Error *err);
void hmp_info_name(Monitor *mon, const QDict *qdict);
void hmp_info_version(Monitor *mon, const QDict *qdict);