mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
error: Don't decorate original error message when adding to it
Prepend the additional information, colon, space to the original message without enclosing it in parenthesis or quotes, like we do elsewhere. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <1450452927-8346-11-git-send-email-armbru@redhat.com>
This commit is contained in:
parent
8277d2aa58
commit
8aa802a6b7
4 changed files with 4 additions and 4 deletions
|
@ -832,7 +832,7 @@ int main(int argc, char **argv)
|
|||
|
||||
ctx = aio_context_new(&local_error);
|
||||
if (!ctx) {
|
||||
error_report("Failed to create AIO Context: '%s'",
|
||||
error_report("Failed to create AIO Context: %s",
|
||||
error_get_pretty(local_error));
|
||||
error_free(local_error);
|
||||
exit(1);
|
||||
|
|
|
@ -229,7 +229,7 @@ int main(int argc, char **argv)
|
|||
|
||||
ctx = aio_context_new(&local_error);
|
||||
if (!ctx) {
|
||||
error_report("Failed to create AIO Context: '%s'",
|
||||
error_report("Failed to create AIO Context: %s",
|
||||
error_get_pretty(local_error));
|
||||
error_free(local_error);
|
||||
exit(1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue