summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_bio.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-07-08 12:21:11 +0000
committerbde <bde@FreeBSD.org>2002-07-08 12:21:11 +0000
commit401e8fb1290eb05ebf404d7ce6cf66e56f1209bb (patch)
tree4f90d5ceb09c6b5b08ddd4148e663220a5914a25 /sys/kern/vfs_bio.c
parent69b32346a7d1b6aa3dccbe8f8a21e8b17023db39 (diff)
downloadFreeBSD-src-401e8fb1290eb05ebf404d7ce6cf66e56f1209bb.zip
FreeBSD-src-401e8fb1290eb05ebf404d7ce6cf66e56f1209bb.tar.gz
Fixed some printf format errors (one new one reported by gcc and 3 nearby
old ones not reported by gcc). This helps unbreak LINT.
Diffstat (limited to 'sys/kern/vfs_bio.c')
-rw-r--r--sys/kern/vfs_bio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index f2696fe..1f86b68 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -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
OpenPOWER on IntegriCloud