diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index f293839180..b6cbcec443 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -322,11 +322,14 @@ void *wxDllLoader::GetSymbol(wxDllType dllHandle, const wxString &name, bool *su #elif defined(__WXPM__) || defined(__EMX__) wxDllGetSymbol(dllHandle, symbol); -#else - // mb_str() is necessary in Unicode build - symbol = wxDllGetSymbol(dllHandle, name.mb_str()); +#else // Windows or Unix -#endif + // mb_str() is necessary in Unicode build + // + // "void *" cast is needed by gcc 3.1 + w32api 1.4, don't ask me why + symbol = (void *)wxDllGetSymbol(dllHandle, name.mb_str()); + +#endif // OS if ( !symbol ) {