mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
error: Use error_reportf_err() where appropriate
Replace error_report("...: %s", ..., error_get_pretty(err)); by error_reportf_err(err, "...: ", ...); One of the replaced messages lacked a colon. Add it. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200505101908.6207-6-armbru@redhat.com>
This commit is contained in:
parent
d01127584e
commit
5217f1887a
6 changed files with 17 additions and 16 deletions
|
@ -631,8 +631,9 @@ static void usb_mtp_object_readdir(MTPState *s, MTPObject *o)
|
|||
int64_t id = qemu_file_monitor_add_watch(s->file_monitor, o->path, NULL,
|
||||
file_monitor_event, s, &err);
|
||||
if (id == -1) {
|
||||
error_report("usb-mtp: failed to add watch for %s: %s", o->path,
|
||||
error_get_pretty(err));
|
||||
error_reportf_err(err,
|
||||
"usb-mtp: failed to add watch for %s: ",
|
||||
o->path);
|
||||
error_free(err);
|
||||
} else {
|
||||
trace_usb_mtp_file_monitor_event(s->dev.addr, o->path,
|
||||
|
@ -1276,8 +1277,8 @@ static void usb_mtp_command(MTPState *s, MTPControl *c)
|
|||
|
||||
s->file_monitor = qemu_file_monitor_new(&err);
|
||||
if (err) {
|
||||
error_report("usb-mtp: file monitoring init failed: %s",
|
||||
error_get_pretty(err));
|
||||
error_reportf_err(err,
|
||||
"usb-mtp: file monitoring init failed: ");
|
||||
error_free(err);
|
||||
} else {
|
||||
QTAILQ_INIT(&s->events);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue