mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Don't use open coded flags.
This commit is contained in:
parent
938ef76182
commit
66fe056f30
2
main.c
2
main.c
|
|
@ -719,7 +719,7 @@ int main(int argc, char *argv[])
|
||||||
|
|
||||||
gettimeofday(&start_time, NULL);
|
gettimeofday(&start_time, NULL);
|
||||||
|
|
||||||
if (control.flags & (FLAG_DECOMPRESS | FLAG_TEST_ONLY))
|
if (DECOMPRESS || TEST_ONLY)
|
||||||
decompress_file(&control);
|
decompress_file(&control);
|
||||||
else if (INFO)
|
else if (INFO)
|
||||||
get_fileinfo(&control);
|
get_fileinfo(&control);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue