aboutsummaryrefslogtreecommitdiff
path: root/src/common/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/macros.h')
-rw-r--r--src/common/macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/macros.h b/src/common/macros.h
index 3735af6..f53a508 100644
--- a/src/common/macros.h
+++ b/src/common/macros.h
@@ -11,8 +11,8 @@
#if DEBUG
# include "cerr.h"
-# define assume(C) \
- ((C) ? (void)0 \
+# define assume(C) \
+ ((C) ? (void)0 \
: diex("%s:%d: %s(): assumption ā€˜%sā€™ failed", __FILE__, __LINE__, \
__func__, #C))
#else