Correct function name in panic().

Reported by:	kensmith
This commit is contained in:
Pawel Jakub Dawidek 2008-04-07 18:12:37 +00:00
parent e0f62984c1
commit 58e9afacb4

View file

@ -82,7 +82,7 @@ ufs_gjournal_modref(struct vnode *vp, int count)
cgbno = fsbtodb(fs, cgtod(fs, cg));
}
if ((u_int)ino >= fs->fs_ipg * fs->fs_ncg)
panic("ffs_freefile: range: dev = %s, ino = %lu, fs = %s",
panic("ufs_gjournal_modref: range: dev = %s, ino = %lu, fs = %s",
devtoname(dev), (u_long)ino, fs->fs_fsmnt);
if ((error = bread(devvp, cgbno, (int)fs->fs_cgsize, NOCRED, &bp))) {
brelse(bp);