summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2018-06-08 14:15:33 +0200
committerPeter Maydell2018-06-08 14:15:33 +0200
commit21528149eba03fc17f428a8e1660d8666683ca85 (patch)
treed4e204a8d881a48ffe7021c7d2c8f09d5454b6d5 /target
parenttarget/arm: Add trailing '\n' to qemu_log() calls (diff)
downloadqemu-21528149eba03fc17f428a8e1660d8666683ca85.tar.gz
qemu-21528149eba03fc17f428a8e1660d8666683ca85.tar.xz
qemu-21528149eba03fc17f428a8e1660d8666683ca85.zip
target/m68k: Add trailing '\n' to qemu_log() call
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-id: 20180606152128.449-10-f4bug@amsat.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target')
-rw-r--r--target/m68k/translate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/m68k/translate.c b/target/m68k/translate.c
index 37d6ffd853..4b5dbdb51c 100644
--- a/target/m68k/translate.c
+++ b/target/m68k/translate.c
@@ -1556,7 +1556,7 @@ DISAS_INSN(undef)
/* ??? This is both instructions that are as yet unimplemented
for the 680x0 series, as well as those that are implemented
but actually illegal for CPU32 or pre-68020. */
- qemu_log_mask(LOG_UNIMP, "Illegal instruction: %04x @ %08x",
+ qemu_log_mask(LOG_UNIMP, "Illegal instruction: %04x @ %08x\n",
insn, s->insn_pc);
gen_exception(s, s->insn_pc, EXCP_UNSUPPORTED);
}