X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/3919356baf9635c7cfa2f2bf77cc5b66da672cc2..e1778858ddc53a6a82e8ee24f02e6b673687f69a:/client/fpga_compress.c diff --git a/client/fpga_compress.c b/client/fpga_compress.c index fb3d7193..aac589af 100644 --- a/client/fpga_compress.c +++ b/client/fpga_compress.c @@ -140,7 +140,7 @@ int zlib_compress(FILE *infile[], uint8_t num_infiles, FILE *outfile) ret = deflate(&compressed_fpga_stream, Z_FINISH); } - fprintf(stderr, "compressed %u input bytes to %" PRIu64 " output bytes\n", i, compressed_fpga_stream.total_out); + fprintf(stderr, "compressed %u input bytes to %lu output bytes\n", i, compressed_fpga_stream.total_out); if (ret != Z_STREAM_END) { fprintf(stderr, "Error in deflate(): %d %s\n", ret, compressed_fpga_stream.msg);