]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
FIX: one of these days I will start being more observant about argument order
authoriceman1001 <iceman@iuse.se>
Fri, 15 Jan 2016 14:22:25 +0000 (15:22 +0100)
committericeman1001 <iceman@iuse.se>
Fri, 15 Jan 2016 14:22:25 +0000 (15:22 +0100)
.gitignore
client/fpga_compress.c

index 6ab46df992783418bfdde279e619af096003922c..7a71c19acfc81972eedd9cfc0bdc9993940dd665 100644 (file)
@@ -36,4 +36,5 @@ fpga/*
 !fpga/go.bat
 !fpga/sim.tcl
 
+client/*
 
index 3d5ba7cadb0bdf460622b142579801966f83b7d9..865681cd8db4c68799fb8aeafc5461490b1c4a51 100644 (file)
@@ -138,7 +138,7 @@ int zlib_compress(FILE *infile[], uint8_t num_infiles, FILE *outfile)
                ret = deflate(&compressed_fpga_stream, Z_FINISH);
        }
        
-       fprintf(stderr, "compressed %lu input bytes to %u 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);
Impressum, Datenschutz