ckolivas / lrzip

Long Range Zip

Home Page:http://lrzip.kolivas.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect number of arguments passed to print_maxverbose in lz4_compresses

Wooldoor opened this issue · comments

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);