From: Pranith Kumar Date: Sat, 25 Mar 2017 20:19:23 +0000 (-0400) Subject: tcg: Add a new line after incompatibility warning X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8cfef89271e27e4a7cd047835dc8161fad50bc5a;p=qemu.git tcg: Add a new line after incompatibility warning Signed-off-by: Pranith Kumar Signed-off-by: Alex Bennée Reviewed-by: Paolo Bonzini --- diff --git a/cpus.c b/cpus.c index 167d9615e1..68fdbc40b9 100644 --- a/cpus.c +++ b/cpus.c @@ -209,7 +209,7 @@ void qemu_tcg_configure(QemuOpts *opts, Error **errp) if (!check_tcg_memory_orders_compatible()) { error_report("Guest expects a stronger memory ordering " "than the host provides"); - error_printf("This may cause strange/hard to debug errors"); + error_printf("This may cause strange/hard to debug errors\n"); } mttcg_enabled = true; }