summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 2f8440e3..02861521 100644
--- a/lib.c
+++ b/lib.c
@@ -2346,7 +2346,7 @@ static size_t bounding_pow_two(size_t s)
s |= (t >> 16);
}
- return s ? s + 1 : s;
+ return s + 1;
}
mem_t *chk_manage_vec(mem_t *old, size_t oldfilled, size_t newfilled,