From 8413b326ea39c771fd38d0e5262f155c29984221 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 9 Mar 2013 20:07:38 -0500 Subject: Minor - add missing newline to floppy debug statement. Signed-off-by: Kevin O'Connor --- src/floppy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/floppy.c b/src/floppy.c index 74336bc..62802ba 100644 --- a/src/floppy.c +++ b/src/floppy.c @@ -490,7 +490,7 @@ floppy_cmd(struct disk_op_s *op, int blocksize, struct floppy_pio_s *pio) if (pio->data[0] & 0xc0) { if (pio->data[1] & 0x02) return DISK_RET_EWRITEPROTECT; - dprintf(1, "floppy error: %02x %02x %02x %02x %02x %02x %02x" + dprintf(1, "floppy error: %02x %02x %02x %02x %02x %02x %02x\n" , pio->data[0], pio->data[1], pio->data[2], pio->data[3] , pio->data[4], pio->data[5], pio->data[6]); return DISK_RET_ECONTROLLER; -- cgit v1.1