Correct 3DS Backend_PrintInfo writing to stderr
This commit is contained in:
parent
b5292f0ce7
commit
8513a1d7d8
1 changed files with 3 additions and 3 deletions
|
@ -134,9 +134,9 @@ ATTRIBUTE_FORMAT_PRINTF(1, 2) void Backend_PrintInfo(const char *format, ...)
|
|||
{
|
||||
va_list argumentList;
|
||||
va_start(argumentList, format);
|
||||
fputs("INFO: ", stderr);
|
||||
vfprintf(stderr, format, argumentList);
|
||||
fputc('\n', stderr);
|
||||
fputs("INFO: ", stdout);
|
||||
vfprintf(stdout, format, argumentList);
|
||||
fputc('\n', stdout);
|
||||
va_end(argumentList);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue