bug preventing compilation of wxLogGui under !Windows corrected

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-06-03 16:34:39 +00:00
parent 39e6cbe2d2
commit 884d770ab5

View File

@ -454,8 +454,8 @@ void wxLogGui::DoLog(wxLogLevel level, const char *szString)
OutputDebugString("\n\r");
#else //!WIN32
// send them to stderr
printf(stderr, level == Trace ? "Trace: %s\n"
: "Debug: %s\n", szString);
fprintf(stderr, level == wxLOG_Trace ? "Trace: %s\n"
: "Debug: %s\n", szString);
fflush(stderr);
#endif // WIN32
#endif