Skip to content
Snippets Groups Projects
Commit f1598b54 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

SW-382: fixed compiler warning

parent 1348aa25
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ uLong adler32(adler, buf, len)
}
/* initial Adler-32 value (deferred check for len == 1 speed) */
if (buf == Z_NULL)
if (buf == (void*)Z_NULL)
return 1L;
/* in case short lengths are provided, keep it somewhat fast */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment