diff options
| author | Kirk McKusick <mckusick@FreeBSD.org> | 2003-11-12 08:01:40 +0000 |
|---|---|---|
| committer | Kirk McKusick <mckusick@FreeBSD.org> | 2003-11-12 08:01:40 +0000 |
| commit | fde81c7d8e5a5cf50a6a9979eb7d0232b361a772 (patch) | |
| tree | 9276085ba9980aaba9cc6dd96164deefa080feaf /sys/kern/vfs_cluster.c | |
| parent | a61575cf29041951cfd1f51d636f17ee3151b9ad (diff) | |
Notes
Diffstat (limited to 'sys/kern/vfs_cluster.c')
| -rw-r--r-- | sys/kern/vfs_cluster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index dc86fb98fddf..3fa110b1b5bc 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -327,8 +327,8 @@ cluster_rbuild(vp, filesize, lbn, blkno, size, run, fbp) GIANT_REQUIRED; KASSERT(size == vp->v_mount->mnt_stat.f_iosize, - ("cluster_rbuild: size %ld != filesize %ld\n", - size, vp->v_mount->mnt_stat.f_iosize)); + ("cluster_rbuild: size %ld != filesize %jd\n", + size, (intmax_t)vp->v_mount->mnt_stat.f_iosize)); /* * avoid a division |
