mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 11:08:25 +00:00
error: Strip trailing '\n' from error string arguments (again)
Commit9af9e0f,6daf194d,be62a2eband312fd5fgot rid of a bunch, but they keep coming back. checkpatch.pl tries to flag them since commit5d596c2, but it's not very good at it. Offenders tracked down with Coccinelle script scripts/coccinelle/err-bad-newline.cocci, an updated version of the script from commit312fd5f. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1470224274-31522-2-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
@@ -3490,7 +3490,7 @@ typedef struct BenchData {
|
||||
static void bench_undrained_flush_cb(void *opaque, int ret)
|
||||
{
|
||||
if (ret < 0) {
|
||||
error_report("Failed flush request: %s\n", strerror(-ret));
|
||||
error_report("Failed flush request: %s", strerror(-ret));
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
@@ -3501,7 +3501,7 @@ static void bench_cb(void *opaque, int ret)
|
||||
BlockAIOCB *acb;
|
||||
|
||||
if (ret < 0) {
|
||||
error_report("Failed request: %s\n", strerror(-ret));
|
||||
error_report("Failed request: %s", strerror(-ret));
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user