From: Philippe Mathieu-Daudé Date: Wed, 6 Jun 2018 14:59:21 +0000 (-0300) Subject: hw/misc/mos6522: Add trailing '\n' to qemu_log() calls X-Git-Url: https://repo.jachan.dev/qemu.git/commitdiff_plain/c9bca798447879ee1288a469604cf824bc2a4622 hw/misc/mos6522: Add trailing '\n' to qemu_log() calls Signed-off-by: Philippe Mathieu-Daudé Signed-off-by: David Gibson --- diff --git a/hw/misc/mos6522.c b/hw/misc/mos6522.c index 6163cea6ab..49166cb8ad 100644 --- a/hw/misc/mos6522.c +++ b/hw/misc/mos6522.c @@ -189,12 +189,12 @@ static uint64_t mos6522_get_load_time(MOS6522State *s, MOS6522Timer *ti) static void mos6522_portA_write(MOS6522State *s) { - qemu_log_mask(LOG_UNIMP, "portA_write unimplemented"); + qemu_log_mask(LOG_UNIMP, "portA_write unimplemented\n"); } static void mos6522_portB_write(MOS6522State *s) { - qemu_log_mask(LOG_UNIMP, "portB_write unimplemented"); + qemu_log_mask(LOG_UNIMP, "portB_write unimplemented\n"); } uint64_t mos6522_read(void *opaque, hwaddr addr, unsigned size)