mirror of
https://github.com/mii443/qemu.git
synced 2025-08-24 16:09:37 +00:00
qemu-img: Avoid qerror_report_err() outside QMP command handlers
qerror_report_err() is a transitional interface to help with converting existing monitor commands to QMP. It should not be used elsewhere. Replace by error_report_err(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
@ -889,8 +889,7 @@ done:
|
|||||||
blk_unref(blk);
|
blk_unref(blk);
|
||||||
|
|
||||||
if (local_err) {
|
if (local_err) {
|
||||||
qerror_report_err(local_err);
|
error_report_err(local_err);
|
||||||
error_free(local_err);
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user