Changes by: uvman
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4752/ntfsprogs
Modified Files:
utils.h
Log Message:
Surround error-prone macros with parentheses
Index: utils.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/utils.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -p -r1.33 -r1.34
--- utils.h 28 Oct 2005 12:47:49 -0000 1.33
+++ utils.h 28 Oct 2005 13:00:48 -0000 1.34
@@ -101,14 +101,14 @@ ntfs_volume * utils_mount_volume(const c
* defines...
* if *not in use* then the other flags are ignored?
*/
-#define FEMR_IN_USE 1 << 0
-#define FEMR_NOT_IN_USE 1 << 1
-#define FEMR_FILE 1 << 2 // $DATA
-#define FEMR_DIR 1 << 3 // $INDEX_ROOT, "$I30"
-#define FEMR_METADATA 1 << 4
-#define FEMR_NOT_METADATA 1 << 5
-#define FEMR_BASE_RECORD 1 << 6
-#define FEMR_NOT_BASE_RECORD 1 << 7
+#define FEMR_IN_USE (1 << 0)
+#define FEMR_NOT_IN_USE (1 << 1)
+#define FEMR_FILE (1 << 2) // $DATA
+#define FEMR_DIR (1 << 3) // $INDEX_ROOT, "$I30"
+#define FEMR_METADATA (1 << 4)
+#define FEMR_NOT_METADATA (1 << 5)
+#define FEMR_BASE_RECORD (1 << 6)
+#define FEMR_NOT_BASE_RECORD (1 << 7)
#define FEMR_ALL_RECORDS 0xFF
/**
|