diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/vfs_bio.c | 4 |
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 |