Browse Source

Merge branch 'maint-0.3.3' into maint-0.3.4

Nick Mathewson 5 years ago
parent
commit
d1ec7bb06e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/common/util_bug.h

+ 2 - 2
src/common/util_bug.h

@@ -70,14 +70,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)