Fix: CAA_BUILD_BUG_ON should refer to CAA_BUILD_BUG_ON_ZERO
[urcu.git] / 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.022246 seconds and 4 git commands to generate.