Fix: CAA_BUILD_BUG_ON should refer to CAA_BUILD_BUG_ON_ZERO
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 30 Jul 2012 03:45:40 +0000 (23:45 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 30 Jul 2012 03:46:57 +0000 (23:46 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
urcu/compiler.h

index 0c6ece252ca0e8bee2a480ab45588bb8ccd15bcd..cd4a49d19dc6e82f454027bfba76dc2f8eb14bf5 100644 (file)
@@ -70,7 +70,7 @@
        })
 
 #define CAA_BUILD_BUG_ON_ZERO(cond) (sizeof(struct { int:-!!(cond); }))
-#define CAA_BUILD_BUG_ON(cond) ((void)BUILD_BUG_ON_ZERO(cond))
+#define CAA_BUILD_BUG_ON(cond) ((void)CAA_BUILD_BUG_ON_ZERO(cond))
 
 /*
  * __rcu is an annotation that documents RCU pointer accesses that need
This page took 0.024948 seconds and 4 git commands to generate.