Match sign of printf directive to sign of argument in testzlib.

This commit is contained in:
Mark Adler 2023-07-29 23:58:11 -07:00
parent dcd0d86b9e
commit b3f23f7fb7
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ int main(int argc, char *argv[])
printf("error reading %s\n",argv[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)
BlockSizeCompress=atol(argv[2]);