summaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2004-07-02 13:03:37 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2004-07-02 13:03:37 +0000
commit453f7788e69a20e515867c62e607863ad905ba41 (patch)
treef51097e6716df3241fdd5a5cbb806a5a632bc4ac /sys/ufs
parentea6a51f02d99fcd3332feb524dc23027a4b5692b (diff)
printf inode numer as unsigned -- just the way it is
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c
index 2a43bc7cc07..5cd77b732ac 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.47 2004/06/21 23:50:38 tholo Exp $ */
+/* $OpenBSD: ffs_alloc.c,v 1.48 2004/07/02 13:03:36 mickey Exp $ */
/* $NetBSD: ffs_alloc.c,v 1.11 1996/05/11 18:27:09 mycroft Exp $ */
/*
@@ -1417,7 +1417,7 @@ ffs_blkfree(ip, bno, size)
}
cg = dtog(fs, bno);
if ((u_int)bno >= fs->fs_size) {
- printf("bad block %d, ino %d\n", bno, ip->i_number);
+ printf("bad block %d, ino %u\n", bno, ip->i_number);
ffs_fserr(fs, ip->i_ffs_uid, "bad block");
return;
}
@@ -1541,7 +1541,7 @@ ffs_freefile(struct inode *pip, ino_t ino, int mode)
cgp->cg_time = time_second;
ino %= fs->fs_ipg;
if (isclr(cg_inosused(cgp), ino)) {
- printf("dev = 0x%x, ino = %d, fs = %s\n",
+ printf("dev = 0x%x, ino = %u, fs = %s\n",
pip->i_dev, ino, fs->fs_fsmnt);
if (fs->fs_ronly == 0)
panic("ffs_freefile: freeing free inode");