aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-03-09 20:07:38 -0500
committerKevin O'Connor <kevin@koconnor.net>2013-03-09 20:07:38 -0500
commit8413b326ea39c771fd38d0e5262f155c29984221 (patch)
tree3e12aabb1c53904da14b9cc88beb34bd52f37f3a
parentb7b92935df0e309149c042d587e4764548f10608 (diff)
downloadseabios-8413b326ea39c771fd38d0e5262f155c29984221.tar.gz
Minor - add missing newline to floppy debug statement.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--src/floppy.c2
1 files changed, 1 insertions, 1 deletions
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;