1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

zlibWrapper: support for stricter gcc warnings

This commit is contained in:
inikep
2016-06-02 18:40:41 +02:00
parent 7cab86f647
commit 614fddee6a
4 changed files with 11 additions and 10 deletions

View File

@ -61,8 +61,8 @@ void *myalloc(q, n, m)
void *q;
unsigned n, m;
{
q = Z_NULL;
void *buf = calloc(n, m);
q = Z_NULL;
/* printf("myalloc %p n=%d m=%d\n", buf, n, m); */
return buf;
}