diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-12-02 10:26:09 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-12-02 10:56:41 -0500 |
commit | 5920a1b5e19e529ab3a3972348a6d53bcd90acfc (patch) | |
tree | c791c10af803beac372c4eef052eca8183410257 /ctx.c | |
parent | bdef1cd0bb00251bf92e6a545bb6e0f2dc2814a5 (diff) | |
download | bfs-5920a1b5e19e529ab3a3972348a6d53bcd90acfc.tar.xz |
Give messages to unconditional assertion failures
Diffstat (limited to 'ctx.c')
-rw-r--r-- | ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ const char *debug_flag_name(enum debug_flags flag) { break; } - assert(false); + assert(!"Unrecognized debug flag"); return "???"; } |