]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Add parentheses to the ctassert macro expansions
authorNick Mathewson <nickm@torproject.org>
Tue, 6 Nov 2018 20:41:14 +0000 (15:41 -0500)
committerNick Mathewson <nickm@torproject.org>
Tue, 6 Nov 2018 20:41:14 +0000 (15:41 -0500)
src/lib/cc/ctassert.h

index 7307bca53ab354e6829e7b505539f6781212e2be..5a1b137cba799f98904645507650c5159ce5b16c 100644 (file)
@@ -43,7 +43,7 @@
 #if __STDC_VERSION__ >= 201112L
 
 /* If C11 is available, just use _Static_assert.  */
-#define CTASSERT(x) _Static_assert(x, #x)
+#define CTASSERT(x) _Static_assert((x), #x)
 
 #else
 
  * error.
  */
 #if defined(__COUNTER__)
-#define CTASSERT(x) CTASSERT_EXPN(x, c, __COUNTER__)
+#define CTASSERT(x) CTASSERT_EXPN((x), c, __COUNTER__)
 #elif defined(__INCLUDE_LEVEL__)
-#define CTASSERT(x) CTASSERT_EXPN(x, __INCLUDE_LEVEL__, __LINE__)
+#define CTASSERT(x) CTASSERT_EXPN((x), __INCLUDE_LEVEL__, __LINE__)
 #else
-#define CTASSERT(x) CTASSERT_EXPN(x, l, __LINE__) /* hope it's unique enough */
+/* hope it's unique enough */
+#define CTASSERT(x) CTASSERT_EXPN((x), l, __LINE__)
 #endif
 
 #define CTASSERT_EXPN(x, a, b) CTASSERT_DECL(x, a, b)