summaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-04-03 11:09:48 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2017-04-03 11:09:48 +0200
commitb75890e0fd7abb995d083b795c2cd45703b7cb22 (patch)
tree3717c455ccb4885f55acdd4eca14a5cda023a9fe /src/buffer.c
parent3aaf80487cdd34cf374eb02e52e5836712b4e51b (diff)
Removed abort outside of conditional (typo).
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index d6c9c9b..a237b11 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -48,7 +48,6 @@ void cmark_strbuf_grow(cmark_strbuf *buf, bufsize_t target_size) {
(INT32_MAX / 2));
abort();
}
- abort();
/* Oversize the buffer by 50% to guarantee amortized linear time
* complexity on append operations. */