quantize : fix --keep-split check (#7374)

This commit is contained in:
Fred Douglas
2024-05-19 11:37:04 -05:00
committed by GitHub
parent f030ec1f7a
commit 1ea2a0036e

View File

@ -284,7 +284,7 @@ int main(int argc, char ** argv) {
} else {
usage(argv[0]);
}
} else if (strcmp(argv[arg_idx], "--keep-split")) {
} else if (strcmp(argv[arg_idx], "--keep-split") == 0) {
params.keep_split = true;
} else {
usage(argv[0]);