Don't use the 'unix-like' check for Palm.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-02-28 21:14:43 +00:00
parent edef8600a6
commit 84f5e95e86

View File

@ -1841,9 +1841,9 @@ int wxString::PrintfV(const wxChar* pszFormat, va_list argptr)
// buffer were large enough
// also, it may return an errno may be something like EILSEQ,
// in which case we need to break out
if ( (len >= 0 && len <= size)
// No EOVERFLOW on Windows
#ifndef __WXMSW__
if ( (len >= 0 && len <= size)
// No EOVERFLOW on Windows nor Palm 6.0
#if !defined(__WXMSW__) && !defined(__WXPALMOS__)
|| errno != EOVERFLOW
#endif
)