1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Fix typo in non-Win32 logging code

This commit is contained in:
2014-06-03 21:31:32 -07:00
parent dd23320f5e
commit d113642a61

View File

@ -724,7 +724,7 @@ bool plStatusLog::IPrintLineToFile( const char *line, uint32_t count )
OutputDebugString(out_str.c_str());
#endif
#else
fputs(str.c_str(), str);
fputs(out_str.c_str(), stderr);
#endif
}