summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2018-01-10 16:17:37 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2018-01-10 16:17:37 +0100
commit2e507a745733b0cee2ea7d302cc9d626cb2e0c80 (patch)
tree41e0106b834a382dc4b3a329625f655819c6b3d9 /lib
parent72163bd5f3ccefc1edda585f6f605c37e774a0b8 (diff)
Use non-fatal asserts even for regular build
Diffstat (limited to 'lib')
-rw-r--r--lib/birdlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/birdlib.h b/lib/birdlib.h
index f41cceb5..428b3209 100644
--- a/lib/birdlib.h
+++ b/lib/birdlib.h
@@ -152,9 +152,9 @@ void debug(const char *msg, ...); /* Printf to debug output */
#endif
#ifdef DEBUGGING
-#define ASSERT(x) do { if (!(x)) bug("Assertion `%s' failed at %s:%d", #x, __FILE__, __LINE__); } while(0)
+#define ASSERT(x) do { if (!(x)) bug("Assertion '%s' failed at %s:%d", #x, __FILE__, __LINE__); } while(0)
#else
-#define ASSERT(x) do { } while(0)
+#define ASSERT(x) do { if (!(x)) log(L_BUG "Assertion '%s' failed at %s:%d", #x, __FILE__, __LINE__); } while(0)
#endif
/* Pseudorandom numbers */