diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-07-03 08:03:07 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-07-03 08:03:07 +0000 |
commit | 1944317ce0196a9b7714c7000f3714fac0821586 (patch) | |
tree | 46523646df206220e9e98bd06b7751b99d6ed3c3 /sys/fs/ext2fs/ext2_vfsops.c | |
parent | ebe19c57a10b0f8b20c615743f6cb3f0ffae428e (diff) | |
download | FreeBSD-src-1944317ce0196a9b7714c7000f3714fac0821586.zip FreeBSD-src-1944317ce0196a9b7714c7000f3714fac0821586.tar.gz |
Fix a typo
Diffstat (limited to 'sys/fs/ext2fs/ext2_vfsops.c')
-rw-r--r-- | sys/fs/ext2fs/ext2_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/ext2fs/ext2_vfsops.c b/sys/fs/ext2fs/ext2_vfsops.c index e0a0d3b..17ffb62 100644 --- a/sys/fs/ext2fs/ext2_vfsops.c +++ b/sys/fs/ext2fs/ext2_vfsops.c @@ -767,7 +767,7 @@ ext2_statfs(struct mount *mp, struct statfs *sbp) ump = VFSTOEXT2(mp); fs = ump->um_e2fs; if (fs->e2fs->e2fs_magic != E2FS_MAGIC) - panic("ext2fs_statvfs"); + panic("ext2fs_statfs"); /* * Compute the overhead (FS structures) |