mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 18:42:14 +00:00
[PEFIXUP] Use vfprintf() with the va_args list. (#3598)
This commit is contained in:
parent
abd4c818dc
commit
7ad33940c2
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ static void error(const char* message, ...)
|
|||
fprintf(stderr, "%s ERROR: '%s': ", g_ApplicationName, g_Target);
|
||||
|
||||
va_start(args, message);
|
||||
fprintf(stderr, message, args);
|
||||
vfprintf(stderr, message, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue