summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/rbassert.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/rbassert.h')
-rw-r--r--apps/plugins/puzzles/rbassert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/puzzles/rbassert.h b/apps/plugins/puzzles/rbassert.h
index f3fef84351..56142d633b 100644
--- a/apps/plugins/puzzles/rbassert.h
+++ b/apps/plugins/puzzles/rbassert.h
@@ -8,6 +8,6 @@
8#define assert(p) ((void)0) 8#define assert(p) ((void)0)
9#else 9#else
10 10
11#define assert(e) ((e) ? (void)0 : fatal("assertion failed %s:%d", __FILE__, __LINE__)) 11#define assert(e) ((e) ? (void)0 : fatal("assertion failed on %s line %d: " #e, __FILE__, __LINE__))
12 12
13#endif /* NDEBUG */ 13#endif /* NDEBUG */