Browse Source

Fix typo in non-Win32 logging code

Michael Hansen 10 years ago
parent
commit
d113642a61
  1. 2
      Sources/Plasma/PubUtilLib/plStatusLog/plStatusLog.cpp

2
Sources/Plasma/PubUtilLib/plStatusLog/plStatusLog.cpp

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

Loading…
Cancel
Save