From: Ishani Chugh Date: Thu, 20 Apr 2017 16:32:29 +0000 (+0100) Subject: arm/kvm: Remove trailing newlines from error_report() X-Git-Tag: v2.10.0-rc0~258^2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dffc58519e6a9aac3e40c10c1d375cfd4d568aed;p=thirdparty%2Fqemu.git arm/kvm: Remove trailing newlines from error_report() Signed-off-by: Ishani Chugh Reviewed-by: Stefan Hajnoczi Message-id: 1491629987-6826-1-git-send-email-chugh.ishani@research.iiit.ac.in Signed-off-by: Peter Maydell --- diff --git a/target/arm/kvm64.c b/target/arm/kvm64.c index 61111091ad3..a16abc8d129 100644 --- a/target/arm/kvm64.c +++ b/target/arm/kvm64.c @@ -940,7 +940,7 @@ bool kvm_arm_handle_debug(CPUState *cs, struct kvm_debug_exit_arch *debug_exit) * single step at this point so something has gone wrong. */ error_report("%s: guest single-step while debugging unsupported" - " (%"PRIx64", %"PRIx32")\n", + " (%"PRIx64", %"PRIx32")", __func__, env->pc, debug_exit->hsr); return false; } @@ -965,7 +965,7 @@ bool kvm_arm_handle_debug(CPUState *cs, struct kvm_debug_exit_arch *debug_exit) break; } default: - error_report("%s: unhandled debug exit (%"PRIx32", %"PRIx64")\n", + error_report("%s: unhandled debug exit (%"PRIx32", %"PRIx64")", __func__, debug_exit->hsr, env->pc); }