Fixed some printf format errors (one new one reported by gcc and 3 nearby
old ones not reported by gcc). This helps unbreak LINT.
This commit is contained in:
parent
8d03e1e931
commit
f20c8dde15
@ -2918,8 +2918,8 @@ bufdone(struct buf *bp)
|
||||
#if defined(VFS_BIO_DEBUG)
|
||||
if (OFF_TO_IDX(foff) != m->pindex) {
|
||||
printf(
|
||||
"biodone: foff(%lu)/m->pindex(%d) mismatch\n",
|
||||
(unsigned long)foff, m->pindex);
|
||||
"biodone: foff(%jd)/m->pindex(%ju) mismatch\n",
|
||||
(intmax_t)foff, (uintmax_t)m->pindex);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user