summaryrefslogtreecommitdiffstats
path: root/buf.c
diff options
context:
space:
mode:
Diffstat (limited to 'buf.c')
-rw-r--r--buf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/buf.c b/buf.c
index 4fb25ad6..3cd050ef 100644
--- a/buf.c
+++ b/buf.c
@@ -160,7 +160,7 @@ static void buf_shrink(struct buf *b)
len = succ(len); /* avoid reallocing to zero length; i.e. freeing */
if (len != b->size) {
- b->data = chk_realloc(b->data, c_num(len));
+ b->data = chk_realloc(b->data, c_unum(len));
b->size = b->len;
}
}