summaryrefslogtreecommitdiff
path: root/test/inflate-app.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/inflate-app.c')
-rw-r--r--test/inflate-app.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/inflate-app.c b/test/inflate-app.c
index dddc807..988a3f1 100644
--- a/test/inflate-app.c
+++ b/test/inflate-app.c
@@ -9,8 +9,8 @@ unsigned char *outbuf;
int main(void)
{
// 16 MB
- inbuf = malloc(4096 * 4096);
- outbuf = malloc(4096 * 4096);
+ inbuf = (unsigned char*)malloc(4096 * 4096);
+ outbuf = (unsigned char*)malloc(4096 * 4096);
if (inbuf == NULL || outbuf == NULL) {
return 1;