summaryrefslogtreecommitdiffstats
path: root/parse.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-12-02 10:26:09 -0500
committerTavian Barnes <tavianator@tavianator.com>2020-12-02 10:56:41 -0500
commit5920a1b5e19e529ab3a3972348a6d53bcd90acfc (patch)
treec791c10af803beac372c4eef052eca8183410257 /parse.c
parentbdef1cd0bb00251bf92e6a545bb6e0f2dc2814a5 (diff)
downloadbfs-5920a1b5e19e529ab3a3972348a6d53bcd90acfc.tar.xz
Give messages to unconditional assertion failures
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 571b652..4e326ec 100644
--- a/parse.c
+++ b/parse.c
@@ -497,7 +497,7 @@ static const char *parse_int(const struct parser_state *state, const char *str,
break;
default:
- assert(false);
+ assert(!"Invalid int size");
goto bad;
}