diff options
author | Li Zhijian <lizhijian@cn.fujitsu.com> | 2021-07-06 17:44:33 +0800 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-07-09 18:42:46 +0200 |
commit | eb1960aac1f5b2cad24de300bda2726d63700290 (patch) | |
tree | 5177ef92a7f85fad481c1d120822c6c433051b42 | |
parent | 7ef2408a96c4471383aecf263a7ea2bd51a3235c (diff) |
misc: Remove redundant new line in perror()
Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210706094433.1766952-1-lizhijian@cn.fujitsu.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
-rw-r--r-- | migration/rdma.c | 2 | ||||
-rw-r--r-- | softmmu/cpus.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/migration/rdma.c b/migration/rdma.c index b6cc4bef4a..38a099f7ee 100644 --- a/migration/rdma.c +++ b/migration/rdma.c @@ -1131,7 +1131,7 @@ static int qemu_rdma_reg_whole_ram_blocks(RDMAContext *rdma) IBV_ACCESS_REMOTE_WRITE ); if (!local->block[i].mr) { - perror("Failed to register local dest ram block!\n"); + perror("Failed to register local dest ram block!"); break; } rdma->total_registrations++; diff --git a/softmmu/cpus.c b/softmmu/cpus.c index c3caaeb26e..071085f840 100644 --- a/softmmu/cpus.c +++ b/softmmu/cpus.c @@ -325,7 +325,7 @@ static void sigbus_reraise(void) sigaddset(&set, SIGBUS); pthread_sigmask(SIG_UNBLOCK, &set, NULL); } - perror("Failed to re-raise SIGBUS!\n"); + perror("Failed to re-raise SIGBUS!"); abort(); } |