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>
stable-2.3
Markus Armbruster 2015-02-10 15:14:02 +01:00
parent a720a390b1
commit 6936f299a4
1 changed files with 1 additions and 2 deletions

View File

@ -889,8 +889,7 @@ done:
blk_unref(blk);
if (local_err) {
qerror_report_err(local_err);
error_free(local_err);
error_report_err(local_err);
return 1;
}