提交 6936f299 编写于 作者: M Markus Armbruster

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: NMarkus Armbruster <armbru@redhat.com>
Reviewed-by: NEric Blake <eblake@redhat.com>
上级 a720a390
......@@ -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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册