mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-22 09:41:00 +00:00
Fix cosmetic error in warnings
This commit is contained in:
parent
168858f52d
commit
283df2e90c
|
@ -37,7 +37,7 @@ class Results:
|
|||
|
||||
def warning(self, file_name, line_number, fmt, *args):
|
||||
sys.stderr.write(('{}:{}:Warning:' + fmt + '\n')
|
||||
.format(file_name, line_number, args))
|
||||
.format(file_name, line_number, *args))
|
||||
self.warnings += 1
|
||||
|
||||
def collect_test_directories():
|
||||
|
|
Loading…
Reference in a new issue