1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Don't suppress errors with -qq.

committer: mfx <mfx> 1142081041 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2006-03-11 12:44:01 +00:00
parent 9db1732c36
commit 9bea608843

View File

@ -266,7 +266,7 @@ void do_files(int i, int argc, char *argv[])
do_one_file(iname,oname);
} catch (const Exception &e) {
unlink_ofile(oname);
if (opt->verbose >= 2 || (opt->verbose >= 1 && !e.isWarning()))
if (opt->verbose >= 1 || (opt->verbose >= 0 && !e.isWarning()))
printErr(iname,&e);
set_ec(e.isWarning() ? EXIT_WARN : EXIT_ERROR);
} catch (const Error &e) {