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:
Bruce Evans 2002-07-08 12:21:11 +00:00
parent 8d03e1e931
commit f20c8dde15

View File

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