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
1 changed files with 3 additions and 2 deletions

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.
if (opt_mode == MODE_LIST) {
assert(!user_abort);
if (opt_mode == MODE_LIST)
list_totals();
}
// If we have got a signal, raise it to kill the program instead
// of calling tuklib_exit().