mirror of
https://github.com/libretro/scenewalker-libretro.git
synced 2025-02-21 08:40:57 +00:00
Use fputs instead of fprintf.
Using variable format string is insecure.
This commit is contained in:
parent
3ad0b31099
commit
be9ed7a66c
@ -72,7 +72,7 @@ void retro_stderr(const char *str)
|
||||
#ifdef _WIN32
|
||||
OutputDebugStringA(str);
|
||||
#else
|
||||
fprintf(stderr, str);
|
||||
fputs(str, stderr);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user