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:
parent
39e6cbe2d2
commit
884d770ab5
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user