summary refs log tree commit diff stats
path: root/monitor/misc.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2022-04-17 11:29:43 -0700
committerRichard Henderson <richard.henderson@linaro.org>2022-04-20 10:51:11 -0700
commite2c7c6a454c2c4221461aa04e4061dbb91b4986c (patch)
treee60843c94e954127b0a92a41099c97a840750fa4 /monitor/misc.c
parenteecb0c4e1125c751ded392456b43a036e8efe1ab (diff)
downloadfocaccia-qemu-e2c7c6a454c2c4221461aa04e4061dbb91b4986c.tar.gz
focaccia-qemu-e2c7c6a454c2c4221461aa04e4061dbb91b4986c.zip
util/log: Return bool from qemu_set_log_filename
Per the recommendations in qapi/error.h, return false on failure.

Use the return value in the monitor, the only place we aren't
already passing error_fatal or error_abort.

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220417183019.755276-4-richard.henderson@linaro.org>
Diffstat (limited to 'monitor/misc.c')
-rw-r--r--monitor/misc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/monitor/misc.c b/monitor/misc.c
index b0fc0e5843..4b68fcd346 100644
--- a/monitor/misc.c
+++ b/monitor/misc.c
@@ -419,8 +419,7 @@ static void hmp_logfile(Monitor *mon, const QDict *qdict)
 {
     Error *err = NULL;
 
-    qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err);
-    if (err) {
+    if (!qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err)) {
         error_report_err(err);
     }
 }