]> git.itanic.dy.fi Git - scan-pagemap/commitdiff
utils.h: Fix coding conventions
authorTimo Kokkonen <kaapeli@itanic.dy.fi>
Sun, 15 Aug 2010 16:36:07 +0000 (19:36 +0300)
committerTimo Kokkonen <kaapeli@itanic.dy.fi>
Sun, 15 Aug 2010 16:36:07 +0000 (19:36 +0300)
These were reported by checkpatch.pl

Signed-off-by: Timo Kokkonen <kaapeli@itanic.dy.fi>
utils.h

diff --git a/utils.h b/utils.h
index 6c9a272a6b37ff85c4c2e0e70e22e0e7ed18d2a1..cd544887059ca6eefde997bc3a38a815de411c2f 100644 (file)
--- a/utils.h
+++ b/utils.h
@@ -3,8 +3,8 @@
 
 #include <stddef.h>
 
 
 #include <stddef.h>
 
-#define MAX(a,b) ((a) > (b) ? (a) : (b))
-#define MIN(a,b) ((a) < (b) ? (a) : (b))
+#define MAX(a, b) ((a) > (b) ? (a) : (b))
+#define MIN(a, b) ((a) < (b) ? (a) : (b))
 
 /**
  * container_of - cast a member of a structure out to the containing structure
 
 /**
  * container_of - cast a member of a structure out to the containing structure