svn commit: r239315 - head/sys/kern

Alan Cox alc at FreeBSD.org
Wed Aug 15 22:12:02 UTC 2012


Author: alc
Date: Wed Aug 15 22:12:01 2012
New Revision: 239315
URL: http://svn.freebsd.org/changeset/base/239315

Log:
  Correct a KASSERT message.
  
  Submitted by:	bde

Modified:
  head/sys/kern/vfs_cluster.c

Modified: head/sys/kern/vfs_cluster.c
==============================================================================
--- head/sys/kern/vfs_cluster.c	Wed Aug 15 20:03:47 2012	(r239314)
+++ head/sys/kern/vfs_cluster.c	Wed Aug 15 22:12:01 2012	(r239315)
@@ -315,7 +315,7 @@ cluster_rbuild(vp, filesize, lbn, blkno,
 	int i, inc, j, toff;
 
 	KASSERT(size == vp->v_mount->mnt_stat.f_iosize,
-	    ("cluster_rbuild: size %ld != filesize %jd\n",
+	    ("cluster_rbuild: size %ld != f_iosize %jd\n",
 	    size, (intmax_t)vp->v_mount->mnt_stat.f_iosize));
 
 	/*


More information about the svn-src-all mailing list