Corrected printf formatting.
This commit is contained in:
parent
f7864927f2
commit
5e65e9abb5
1 changed files with 1 additions and 1 deletions
2
exhal.c
2
exhal.c
|
@ -51,7 +51,7 @@ int main (int argc, char **argv) {
|
||||||
fseek(outfile, 0, SEEK_SET);
|
fseek(outfile, 0, SEEK_SET);
|
||||||
fwrite((const void*)unpacked, 1, outputsize, outfile);
|
fwrite((const void*)unpacked, 1, outputsize, outfile);
|
||||||
|
|
||||||
printf("\nUncompressed size: %d bytes\n", outputsize);
|
printf("\nUncompressed size: %zd bytes\n", outputsize);
|
||||||
|
|
||||||
fclose(infile);
|
fclose(infile);
|
||||||
fclose(outfile);
|
fclose(outfile);
|
||||||
|
|
Loading…
Reference in a new issue