From 8cfef89271e27e4a7cd047835dc8161fad50bc5a Mon Sep 17 00:00:00 2001 From: Pranith Kumar Date: Sat, 25 Mar 2017 16:19:23 -0400 Subject: [PATCH] tcg: Add a new line after incompatibility warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Pranith Kumar Signed-off-by: Alex Bennée Reviewed-by: Paolo Bonzini --- cpus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2