X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d44d0cbd7343e36ddd3657dd97cd5eb7018d2585..dad65e8abce518c5cf0bff166dbaee2b8f85d35d:/src/common/string.cpp diff --git a/src/common/string.cpp b/src/common/string.cpp index 211da2c5e3..6a49e9d42a 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -1835,8 +1835,9 @@ int wxString::PrintfV(const wxChar* pszFormat, va_list argptr) // 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 nor Palm 6.0 nor OpenVMS -#if !defined(__WXMSW__) && !defined(__WXPALMOS__) && !defined( __VMS ) + // No EOVERFLOW on Windows nor Palm 6.0 nor OpenVMS nor MacOS (not X) + // not OS/2 (not Innotek libc). +#if !defined(__WXMSW__) && !defined(__WXPALMOS__) && !defined( __VMS ) && !(defined(__WXMAC__) && !defined(__WXMAC_OSX__)) && !(defined(__EMX__) && !defined(__INNOTEK_LIBC__)) || errno != EOVERFLOW #endif )