mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
parent
9d67588c15
commit
dd7c3841ff
1 changed files with 3 additions and 2 deletions
|
@ -253,9 +253,10 @@ main(int argc, char **argv)
|
|||
// All files have now been handled. If in --list mode, display
|
||||
// the totals before exiting. We don't have signal handlers
|
||||
// enabled in --list mode, so we don't need to check user_abort.
|
||||
assert(!user_abort);
|
||||
if (opt_mode == MODE_LIST)
|
||||
if (opt_mode == MODE_LIST) {
|
||||
assert(!user_abort);
|
||||
list_totals();
|
||||
}
|
||||
|
||||
// If we have got a signal, raise it to kill the program instead
|
||||
// of calling tuklib_exit().
|
||||
|
|
Loading…
Reference in a new issue