diff options
author | phk <phk@FreeBSD.org> | 2005-02-27 21:16:26 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-02-27 21:16:26 +0000 |
commit | 64e311f3f8f507d89a544219fd0928f3b824c2ea (patch) | |
tree | 9f91aba7f4622722e3c94741ea86592dd8d6a636 /sys/gnu/fs/ext2fs/ext2_alloc.c | |
parent | 45fc09dc07feb26d9e48db8b8f0a2167c6ec55a6 (diff) | |
download | FreeBSD-src-64e311f3f8f507d89a544219fd0928f3b824c2ea.zip FreeBSD-src-64e311f3f8f507d89a544219fd0928f3b824c2ea.tar.gz |
Remove debug printout of major/minor numbers, print name instead.
Diffstat (limited to 'sys/gnu/fs/ext2fs/ext2_alloc.c')
-rw-r--r-- | sys/gnu/fs/ext2fs/ext2_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/gnu/fs/ext2fs/ext2_alloc.c b/sys/gnu/fs/ext2fs/ext2_alloc.c index 9d387f8..394a252 100644 --- a/sys/gnu/fs/ext2fs/ext2_alloc.c +++ b/sys/gnu/fs/ext2fs/ext2_alloc.c @@ -499,8 +499,8 @@ ext2_vfree(pvp, ino, mode) pip = VTOI(pvp); fs = pip->i_e2fs; if ((u_int)ino > fs->s_inodes_per_group * fs->s_groups_count) - panic("ext2_vfree: range: dev = (%d, %d), ino = %d, fs = %s", - major(pip->i_dev), minor(pip->i_dev), ino, fs->fs_fsmnt); + panic("ext2_vfree: range: dev = %s, ino = %d, fs = %s", + devtoname(pip->i_dev), ino, fs->fs_fsmnt); /* ext2_debug("ext2_vfree (%d, %d) called\n", pip->i_number, mode); */ |