Fix some printf format errors.

Submitted by:	Don Lewis <dl-freebsd@catspoiler.org>
This commit is contained in:
Ian Dowse 2002-07-07 12:30:20 +00:00
parent 897ad22f04
commit 325167c3a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99530
2 changed files with 6 additions and 6 deletions

View File

@ -204,7 +204,7 @@ tperror(int signo __unused)
quit("Cannot recover\n");
/* NOTREACHED */
}
msg("write error %d blocks into volume %d\n", blocksthisvol, tapeno);
msg("write error %ld blocks into volume %d\n", blocksthisvol, tapeno);
broadcast("DUMP WRITE ERROR!\n");
if (!query("Do you want to restart?"))
dumpabort(0);

View File

@ -705,13 +705,13 @@ bread(ufs2_daddr_t blkno, char *buf, int size)
goto loop;
}
if (cnt == -1)
msg("read error from %s: %s: [block %d]: count=%d\n",
msg("read error from %s: %s: [block %qd]: count=%d\n",
disk, strerror(errno), blkno, size);
else
msg("short read error from %s: [block %d]: count=%d, got=%d\n",
msg("short read error from %s: [block %qd]: count=%d, got=%d\n",
disk, blkno, size, cnt);
if (++breaderrors > BREADEMAX) {
msg("More than %d block read errors from %d\n",
msg("More than %d block read errors from %s\n",
BREADEMAX, disk);
broadcast("DUMP IS AILING!\n");
msg("This is an unrecoverable error.\n");
@ -730,11 +730,11 @@ bread(ufs2_daddr_t blkno, char *buf, int size)
((off_t)blkno << dev_bshift))) == dev_bsize)
continue;
if (cnt == -1) {
msg("read error from %s: %s: [sector %d]: count=%d\n",
msg("read error from %s: %s: [sector %qd]: count=%d\n",
disk, strerror(errno), blkno, dev_bsize);
continue;
}
msg("short read error from %s: [sector %d]: count=%d, got=%d\n",
msg("short read error from %s: [sector %qd]: count=%d, got=%d\n",
disk, blkno, dev_bsize, cnt);
}
}