Fix -Werror=format with DEBUG_ENCODE

Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
Pavel Grunt 2016-06-30 11:17:50 +02:00
parent 3a06113ce4
commit a68c821164

View File

@ -365,7 +365,7 @@ static void FNAME(compress_seg)(Encoder *encoder, uint32_t seg_idx, PIXEL *from,
match: // RLE or dictionary (both are encoded by distance from ref (-1) and length)
#ifdef DEBUG_ENCODE
printf(", match(%d, %d, %d)", image_dist, pix_dist, len);
printf(", match(%zu, %zu, %zu)", image_dist, pix_dist, len);
n_encoded += len;
#endif