NOISSUE make the compiler more evil

This commit is contained in:
Petr Mrázek
2015-10-11 19:56:31 +02:00
parent 44db72ead5
commit 457dd2e94e
11 changed files with 18 additions and 13 deletions

View File

@ -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;
}