diff options
Diffstat (limited to 'sys/boot/i386/boot2/boot2.c')
-rw-r--r-- | sys/boot/i386/boot2/boot2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/boot/i386/boot2/boot2.c b/sys/boot/i386/boot2/boot2.c index fdc88ae..d5de068 100644 --- a/sys/boot/i386/boot2/boot2.c +++ b/sys/boot/i386/boot2/boot2.c @@ -611,8 +611,7 @@ drvread(void *buf, unsigned lba, unsigned nblk) v86int(); v86.ctl = V86_FLAGS; if (V86_CY(v86.efl)) { - printf("Disk error 0x%x (lba=0x%x)\n", v86.eax >> 8 & 0xff, - lba); + printf("Disk error 0x%x lba 0x%x\n", v86.eax >> 8 & 0xff, lba); return -1; } return 0; |