[Ocfs2-tools-commits] zab commits r310 - trunk/libocfs2

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Mon Oct 4 12:24:31 CDT 2004


Author: zab
Date: 2004-10-04 12:24:29 -0500 (Mon, 04 Oct 2004)
New Revision: 310

Modified:
   trunk/libocfs2/chain.c
Log:
- '% ' with unsigned specifiers only emits gcc warnings


Modified: trunk/libocfs2/chain.c
===================================================================
--- trunk/libocfs2/chain.c	2004-10-02 01:22:53 UTC (rev 309)
+++ trunk/libocfs2/chain.c	2004-10-04 17:24:29 UTC (rev 310)
@@ -287,7 +287,7 @@
 	gd = (ocfs2_group_desc *)wi->gd_buf;
 	wi->count_free += gd->bg_free_bits_count;
 	wi->count_total += gd->bg_bits;
-	fprintf(stdout, "    % 16"PRIu64": %05d/%05d = %05d/%05d\n",
+	fprintf(stdout, "     %16"PRIu64": %05d/%05d = %05d/%05d\n",
 		gd->bg_blkno,
 		gd->bg_free_bits_count, gd->bg_bits,
 		wi->count_free, wi->count_total);



More information about the Ocfs2-tools-commits mailing list