Save four bytes by shortening a string two chars.

Sponsored by:	DARPA & NAI Labs.
This commit is contained in:
Poul-Henning Kamp 2002-10-08 07:06:24 +00:00
parent 068088370c
commit 68541f7c16
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104666
2 changed files with 2 additions and 4 deletions

View file

@ -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;

View file

@ -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;