diff mbox series

[PULL,5/6] tcg: Add a new line after incompatibility warning

Message ID 20170328110936.24806-6-alex.bennee@linaro.org
State Accepted
Commit 8cfef89271e27e4a7cd047835dc8161fad50bc5a
Headers show
Series MTTCG fixes for rc2 | expand

Commit Message

Alex Bennée March 28, 2017, 11:09 a.m. UTC
From: Pranith Kumar <bobby.prani@gmail.com>


Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>

---
 cpus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.11.0
diff mbox series

Patch

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;
             }