]> Git Repo - linux.git/commitdiff
btrfs: Enclose macros with complex values within parenthesis
authorDulshani Gunawardhana <[email protected]>
Thu, 31 Oct 2013 05:01:13 +0000 (10:31 +0530)
committerChris Mason <[email protected]>
Tue, 12 Nov 2013 03:12:06 +0000 (22:12 -0500)
Enclose macros with complex values within parenthesis in accordance to
checkpatch.pl.

Signed-off-by: Dulshani Gunawardhana <[email protected]>
Reviewed-by: Zach Brown <[email protected]>
Signed-off-by: Josef Bacik <[email protected]>
Signed-off-by: Chris Mason <[email protected]>
fs/btrfs/extent_map.h

index 61adc44b78053331ef5bc51045f55c6f275604d4..93fba716d7f82f517ad082a65354611d1afecdd2 100644 (file)
@@ -3,10 +3,10 @@
 
 #include <linux/rbtree.h>
 
-#define EXTENT_MAP_LAST_BYTE (u64)-4
-#define EXTENT_MAP_HOLE (u64)-3
-#define EXTENT_MAP_INLINE (u64)-2
-#define EXTENT_MAP_DELALLOC (u64)-1
+#define EXTENT_MAP_LAST_BYTE ((u64)-4)
+#define EXTENT_MAP_HOLE ((u64)-3)
+#define EXTENT_MAP_INLINE ((u64)-2)
+#define EXTENT_MAP_DELALLOC ((u64)-1)
 
 /* bits for the flags field */
 #define EXTENT_FLAG_PINNED 0 /* this entry not yet on disk, don't free it */
This page took 0.0557569999999999 seconds and 4 git commands to generate.