This commit is contained in:
iceman1001 2019-04-08 08:15:28 +02:00
parent 8d2c02878b
commit 9328a8efbb

View file

@ -206,7 +206,7 @@ int zlib_decompress(FILE *infile, FILE *outfile) {
compressed_fpga_stream.opaque = Z_NULL;
ret = inflateInit2(&compressed_fpga_stream, 0);
if ( res < 0 )
if ( ret < 0 )
return (EXIT_FAILURE);
do {