Save four bytes by shortening a string two chars.
Sponsored by: DARPA & NAI Labs.
This commit is contained in:
parent
068088370c
commit
68541f7c16
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user