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;