]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wxchar.cpp
conversion warning gcc 3.3 mac
[wxWidgets.git] / src / common / wxchar.cpp
index 6d682be476acc6685a656be996f0c07566a41d72..edbe661e7572ec6be452d9dc82bc04bf04891c33 100644 (file)
@@ -599,13 +599,7 @@ int vfwprintf(FILE *stream, const wxChar *format, va_list argptr)
     if ( rc != -1 )
     {
         // we can't do much better without Unicode support in libc...
-        if ( fprintf(stream, "%s",
-#if wxUSE_UNICODE
-                     s.mb_str().data()
-#else
-                     s.c_str()
-#endif
-                 ) == -1 )
+        if ( fprintf(stream, "%s", (const char*)s.mb_str() ) == -1 )
             return -1;
     }