mirror of
https://github.com/intel/isa-l.git
synced 2025-01-19 04:26:08 +01:00
igzip: Fix missing paren in generate hufftable tool
Change-Id: I1b6d771bfaffd8353e260b7ae286d9abef5e4590 Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
This commit is contained in:
parent
352719d62d
commit
bd4873c8ea
@ -363,15 +363,15 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (are_hufftables_useable(lit_huff_table, dist_huff_table)) {
|
||||
if (create_huff_lookup
|
||||
(lit_huff_table, LIT_LEN, lit_tree, MAX_SAFE_LIT_CODE_LEN) > 0)
|
||||
(lit_huff_table, LIT_LEN, lit_tree, MAX_SAFE_LIT_CODE_LEN) > 0) {
|
||||
printf("Error, code with invalid length for Deflate standard.\n");
|
||||
return 1;
|
||||
|
||||
return 1;
|
||||
}
|
||||
if (create_huff_lookup
|
||||
(dist_huff_table, DIST_LEN, dist_tree, MAX_SAFE_DIST_CODE_LEN) > 0)
|
||||
(dist_huff_table, DIST_LEN, dist_tree, MAX_SAFE_DIST_CODE_LEN) > 0) {
|
||||
printf("Error, code with invalid length for Deflate standard.\n");
|
||||
return 1;
|
||||
|
||||
return 1;
|
||||
}
|
||||
if (are_hufftables_useable(lit_huff_table, dist_huff_table)) {
|
||||
printf("Error, hufftable is not usable\n");
|
||||
return 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user