mirror of https://github.com/xemu-project/xemu.git
arm/kvm: Remove trailing newlines from error_report()
Signed-off-by: Ishani Chugh <chugh.ishani@research.iiit.ac.in> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-id: 1491629987-6826-1-git-send-email-chugh.ishani@research.iiit.ac.in Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
df3692e04b
commit
dffc58519e
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue