ckolivas / lrzip

Long Range Zip
http://lrzip.kolivas.org
GNU General Public License v2.0
619 stars 76 forks source link

Incorrect number of arguments passed to print_maxverbose in lz4_compresses #227

Open Wooldoor opened 2 years ago

Wooldoor commented 2 years ago

1 argument passed in to print_maxverbose but the format string has 2 format specifiers.

Is: print_maxverbose("lz4 testing FAILED for chunk %ld. %d Passes\n", workcounter);

Should be: print_maxverbose("lz4 testing FAILED for chunk %ld. %d Passes\n", s_len, workcounter);