From 25319f526c1922b0bfa33e1f954bb628937070b0 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 16 Mar 2013 21:18:38 -0500 Subject: [PATCH 1/1] read_compressed_resource(): Fix format strings --- src/resource.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/resource.c b/src/resource.c index eb79c749..8d617614 100644 --- a/src/resource.c +++ b/src/resource.c @@ -279,9 +279,9 @@ static int read_compressed_resource(FILE *fp, u64 resource_compressed_size, bool is_partial_chunk = (partial_chunk_size != uncompressed_chunk_size); - DEBUG2("start_offset = %u, end_offset = %u", start_offset, - end_offset); - DEBUG2("partial_chunk_size = %u", partial_chunk_size); + DEBUG2("start_offset = %"PRIu64", end_offset = %"PRIu64"", + start_offset, end_offset); + DEBUG2("partial_chunk_size = %"PRIu64"", partial_chunk_size); /* This is undocumented, but chunks can be uncompressed. This * appears to always be the case when the compressed chunk size -- 2.43.0