diff options
author | 1998-03-03 17:05:32 +0000 | |
---|---|---|
committer | 1998-03-03 17:05:32 +0000 | |
commit | 1a23047c79b1989571832866a7eb9a0640a3a237 (patch) | |
tree | 751a222578119842c1abd1949f90343aa47d7db1 | |
parent | rewrite construct that made GCC 2.8 do an implicit memset before libc (diff) | |
download | wireguard-openbsd-1a23047c79b1989571832866a7eb9a0640a3a237.tar.xz wireguard-openbsd-1a23047c79b1989571832866a7eb9a0640a3a237.zip |
GCC 2.8 -Wall
-rw-r--r-- | sys/ufs/ffs/ffs_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 533476f5d3b..267c368dd6b 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_alloc.c,v 1.11 1998/03/01 08:07:11 niklas Exp $ */ +/* $OpenBSD: ffs_alloc.c,v 1.12 1998/03/03 17:05:32 ryker Exp $ */ /* $NetBSD: ffs_alloc.c,v 1.11 1996/05/11 18:27:09 mycroft Exp $ */ /* @@ -1482,7 +1482,7 @@ ffs_checkblk(ip, bno, size) fs = ip->i_fs; if ((u_int)size > fs->fs_bsize || fragoff(fs, size) != 0) { - printf("bsize = %d, size = %d, fs = %s\n", + printf("bsize = %d, size = %ld, fs = %s\n", fs->fs_bsize, size, fs->fs_fsmnt); panic("checkblk: bad size"); } |