[Ocfs2-commits] khackel commits r1099 - branches/format-changes/src

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Mon Jun 14 19:28:26 CDT 2004


Author: khackel
Date: 2004-06-14 18:28:24 -0500 (Mon, 14 Jun 2004)
New Revision: 1099

Modified:
   branches/format-changes/src/sysfile.c
Log:
not an error

Modified: branches/format-changes/src/sysfile.c
===================================================================
--- branches/format-changes/src/sysfile.c	2004-06-14 22:34:18 UTC (rev 1098)
+++ branches/format-changes/src/sysfile.c	2004-06-14 23:28:24 UTC (rev 1099)
@@ -161,8 +161,8 @@
 		}
 		if (status == 0) {
 			// found all remaining
-			if (blocks <= (__u32)contig_blocks) {
-				LOG_ERROR_ARGS("blocks (%u) <= contig_blocks (%llu)\n",
+			if (blocks < (__u32)contig_blocks) {
+				LOG_ERROR_ARGS("blocks (%u) < contig_blocks (%llu)\n",
 					       blocks, contig_blocks);
 			}
 		} else if (status == -EFAIL && contig_blocks > 0) {



More information about the Ocfs2-commits mailing list