mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 21:03:54 -06:00
decodetree: Tidy error_with_file
Use proper varargs to print the arguments. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
49ee115552
commit
2fd51b19c9
1 changed files with 14 additions and 10 deletions
|
@ -51,23 +51,27 @@ def error_with_file(file, lineno, *args):
|
||||||
global output_file
|
global output_file
|
||||||
global output_fd
|
global output_fd
|
||||||
|
|
||||||
|
prefix = ''
|
||||||
|
if file:
|
||||||
|
prefix += '{0}:'.format(file)
|
||||||
if lineno:
|
if lineno:
|
||||||
r = '{0}:{1}: error:'.format(file, lineno)
|
prefix += '{0}:'.format(lineno)
|
||||||
elif input_file:
|
if prefix:
|
||||||
r = '{0}: error:'.format(file)
|
prefix += ' '
|
||||||
else:
|
print(prefix, end='error: ', file=sys.stderr)
|
||||||
r = 'error:'
|
print(*args, file=sys.stderr)
|
||||||
for a in args:
|
|
||||||
r += ' ' + str(a)
|
|
||||||
r += '\n'
|
|
||||||
sys.stderr.write(r)
|
|
||||||
if output_file and output_fd:
|
if output_file and output_fd:
|
||||||
output_fd.close()
|
output_fd.close()
|
||||||
os.remove(output_file)
|
os.remove(output_file)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
# end error_with_file
|
||||||
|
|
||||||
|
|
||||||
def error(lineno, *args):
|
def error(lineno, *args):
|
||||||
error_with_file(input_file, lineno, args)
|
error_with_file(input_file, lineno, *args)
|
||||||
|
# end error
|
||||||
|
|
||||||
|
|
||||||
def output(*args):
|
def output(*args):
|
||||||
global output_fd
|
global output_fd
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue