misc: Fix -q (quiet) flag
Check the right flag.
This commit is contained in:
parent
9ac4f781ec
commit
4f77bc230a
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ def main(*args):
|
|||
options.usage(2)
|
||||
|
||||
verbose = options.verbose - options.quiet
|
||||
if options.verbose >= 0:
|
||||
if verbose >= 0:
|
||||
print "gem5 Simulator System. http://gem5.org"
|
||||
print brief_copyright
|
||||
print
|
||||
|
|
Loading…
Reference in a new issue