mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Fix make check-spaces.
This commit is contained in:
parent
b113399658
commit
5b28190c67
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user