1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Fix wrong assertion.

This was added in 455e68c030.
This commit is contained in:
Lasse Collin 2010-02-02 11:50:11 +02:00
parent 9d67588c15
commit dd7c3841ff

View file

@ -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().