summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-10-15 12:47:19 -0400
committerNick Mathewson <nickm@torproject.org>2018-10-15 12:47:19 -0400
commit5b28190c67ac6828e588c0ec54fe88eab0fb45fb (patch)
tree4d84ed940773ab207417f63a8e822d879ad4f7d4
parentb113399658934f3a4526387a63429ec4377ca8be (diff)
downloadtor-5b28190c67ac6828e588c0ec54fe88eab0fb45fb.tar.gz
tor-5b28190c67ac6828e588c0ec54fe88eab0fb45fb.zip
Fix make check-spaces.
-rw-r--r--src/common/util_bug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/util_bug.h b/src/common/util_bug.h
index f3e5b7c963..0db6bb6ab0 100644
--- a/src/common/util_bug.h
+++ b/src/common/util_bug.h
@@ -44,14 +44,14 @@
* these macros to just be synonyms for PREDICT_(UN)LIKELY.
*/
#define ASSERT_PREDICT_UNLIKELY_(e) \
- ({ \
+ ( { \
int tor__assert_tmp_value__; \
if (e) \
tor__assert_tmp_value__ = 1; \
else \
tor__assert_tmp_value__ = 0; \
tor__assert_tmp_value__; \
- })
+ } )
#define ASSERT_PREDICT_LIKELY_(e) ASSERT_PREDICT_UNLIKELY_(e)
#else
#define ASSERT_PREDICT_UNLIKELY_(e) PREDICT_UNLIKELY(e)