summaryrefslogtreecommitdiffstats
path: root/depends/hoedown/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'depends/hoedown/src/buffer.c')
-rw-r--r--depends/hoedown/src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/hoedown/src/buffer.c b/depends/hoedown/src/buffer.c
index 12969c5f..1c7ba55a 100644
--- a/depends/hoedown/src/buffer.c
+++ b/depends/hoedown/src/buffer.c
@@ -112,7 +112,7 @@ hoedown_buffer_grow(hoedown_buffer *buf, size_t neosz)
while (neoasz < neosz)
neoasz += buf->unit;
- buf->data = buf->data_realloc(buf->data, neoasz);
+ buf->data = (uint8_t *) buf->data_realloc(buf->data, neoasz);
buf->asize = neoasz;
}