[Ocfs2-commits] manish commits r2176 - trunk/fs/ocfs2/cluster

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Mon Apr 25 22:31:41 CDT 2005


Author: manish
Signed-off-by: mfasheh
Date: 2005-04-25 22:31:39 -0500 (Mon, 25 Apr 2005)
New Revision: 2176

Modified:
   trunk/fs/ocfs2/cluster/masklog.h
Log:
Argh, u64 on x86_64 is defined in terms as long long

Signed-off-by: mfasheh


Modified: trunk/fs/ocfs2/cluster/masklog.h
===================================================================
--- trunk/fs/ocfs2/cluster/masklog.h	2005-04-26 03:23:11 UTC (rev 2175)
+++ trunk/fs/ocfs2/cluster/masklog.h	2005-04-26 03:31:39 UTC (rev 2176)
@@ -223,7 +223,7 @@
 	mlog(ML_EXIT, "EXIT\n");					\
 } while (0)
 
-#if BITS_PER_LONG == 32
+#if (BITS_PER_LONG == 32) || defined(CONFIG_X86_64)
 #define MLFi64 "lld"
 #define MLFu64 "llu"
 #define MLFx64 "llx"



More information about the Ocfs2-commits mailing list