]> xenbits.xensource.com Git - seabios.git/commitdiff
Minor - add missing newline to floppy debug statement.
authorKevin O'Connor <kevin@koconnor.net>
Sun, 10 Mar 2013 01:07:38 +0000 (20:07 -0500)
committerKevin O'Connor <kevin@koconnor.net>
Sun, 10 Mar 2013 01:07:38 +0000 (20:07 -0500)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
src/floppy.c

index 74336bce0ed735a47199743f1fd128bad0f23cea..62802ba5ac5d58d6ac1ec8fd437ae68fb517cbd2 100644 (file)
@@ -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;