Fix printf format warning. Remove leading space from positive value.

This commit is contained in:
Anthony J. Bentley 2013-11-12 03:04:57 -07:00
parent 1352435076
commit dd17790576
3 changed files with 3 additions and 3 deletions

View file

@ -243,7 +243,7 @@ size_t unpack(uint8_t *packed, uint8_t *unpacked) {
printf("Backref (rotate) : %i\n", methoduse[5]);
printf("Backref (reverse): %i\n", methoduse[6]);
printf("\nCompressed size: % zd bytes\n", inpos);
printf("\nCompressed size: %u bytes\n", inpos);
#endif
return (size_t)outpos;

View file

@ -52,7 +52,7 @@ int main (int argc, char **argv) {
fseek(outfile, 0, SEEK_SET);
fwrite((const void*)unpacked, 1, outputsize, outfile);
printf("Uncompressed size: % zd bytes\n", outputsize);
printf("Uncompressed size: %zd bytes\n", outputsize);
fclose(infile);
fclose(outfile);

View file

@ -76,7 +76,7 @@ int main (int argc, char **argv) {
fseek(infile, 0, SEEK_END);
inputsize = ftell(infile);
printf("Uncompressed size: % zd bytes\n", inputsize);
printf("Uncompressed size: %zd bytes\n", inputsize);
if (inputsize > DATA_SIZE) {
printf("Error: File must be a maximum of 65,536 bytes!\n");