mirror of https://github.com/madler/zlib
Match sign of printf directive to sign of argument in testzlib.
This commit is contained in:
parent
dcd0d86b9e
commit
b3f23f7fb7
|
@ -169,7 +169,7 @@ int main(int argc, char *argv[])
|
||||||
printf("error reading %s\n",argv[1]);
|
printf("error reading %s\n",argv[1]);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else printf("file %s read, %u bytes\n",argv[1],lFileSize);
|
else printf("file %s read, %ld bytes\n",argv[1],lFileSize);
|
||||||
|
|
||||||
if (argc>=3)
|
if (argc>=3)
|
||||||
BlockSizeCompress=atol(argv[2]);
|
BlockSizeCompress=atol(argv[2]);
|
||||||
|
|
Loading…
Reference in New Issue