diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-12-18 16:35:13 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:28:24 -0600 |
commit | dd35bd3dfb56adbea511121be25882df59fa9507 (patch) | |
tree | eecf3e2bfe37f81cecc7f6d27ef5e97b47c29e21 /tests | |
parent | 5d3cf3e91d9243f6f1cb5af05dba0331b1009b41 (diff) | |
download | hqemu-dd35bd3dfb56adbea511121be25882df59fa9507.zip hqemu-dd35bd3dfb56adbea511121be25882df59fa9507.tar.gz |
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>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-aio.c | 2 | ||||
-rw-r--r-- | tests/test-thread-pool.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-aio.c b/tests/test-aio.c index e188d8c..f0b447e 100644 --- a/tests/test-aio.c +++ b/tests/test-aio.c @@ -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); diff --git a/tests/test-thread-pool.c b/tests/test-thread-pool.c index 6a0b981..153b8f5 100644 --- a/tests/test-thread-pool.c +++ b/tests/test-thread-pool.c @@ -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); |