svn commit: r238059 - head/sys/fs/ext2fs

Kevin Lo kevlo at FreeBSD.org
Tue Jul 3 08:03:08 UTC 2012


Author: kevlo
Date: Tue Jul  3 08:03:07 2012
New Revision: 238059
URL: http://svn.freebsd.org/changeset/base/238059

Log:
  Fix a typo

Modified:
  head/sys/fs/ext2fs/ext2_vfsops.c

Modified: head/sys/fs/ext2fs/ext2_vfsops.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_vfsops.c	Tue Jul  3 07:28:57 2012	(r238058)
+++ head/sys/fs/ext2fs/ext2_vfsops.c	Tue Jul  3 08:03:07 2012	(r238059)
@@ -767,7 +767,7 @@ ext2_statfs(struct mount *mp, struct sta
 	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)


More information about the svn-src-all mailing list