mirror of https://github.com/xemu-project/xemu.git
tcg: Add a new line after incompatibility warning
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>
This commit is contained in:
parent
0096109052
commit
8cfef89271
2
cpus.c
2
cpus.c
|
@ -209,7 +209,7 @@ void qemu_tcg_configure(QemuOpts *opts, Error **errp)
|
||||||
if (!check_tcg_memory_orders_compatible()) {
|
if (!check_tcg_memory_orders_compatible()) {
|
||||||
error_report("Guest expects a stronger memory ordering "
|
error_report("Guest expects a stronger memory ordering "
|
||||||
"than the host provides");
|
"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;
|
mttcg_enabled = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue