aboutsummaryrefslogtreecommitdiff
path: root/hw/misc
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2018-06-06 11:59:21 -0300
committerDavid Gibson <david@gibson.dropbear.id.au>2018-06-12 10:44:36 +1000
commitc9bca798447879ee1288a469604cf824bc2a4622 (patch)
treed7713597570ba9d8d896f4f6b83eed88647fff39 /hw/misc
parent6ba1647664efc0d7295c03ad4295df403853c70f (diff)
downloadqemu-c9bca798447879ee1288a469604cf824bc2a4622.zip
qemu-c9bca798447879ee1288a469604cf824bc2a4622.tar.gz
qemu-c9bca798447879ee1288a469604cf824bc2a4622.tar.bz2
hw/misc/mos6522: Add trailing '\n' to qemu_log() calls
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/misc')
-rw-r--r--hw/misc/mos6522.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/misc/mos6522.c b/hw/misc/mos6522.c
index 6163cea..49166cb 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)