mesa: Fix windows build when UNICODE is defined.

This commit is contained in:
José Fonseca
2009-01-08 12:04:03 +00:00
parent 374cf77b2f
commit ca337076b3
+1 -1
View File
@@ -48,7 +48,7 @@ _mesa_dlopen(const char *libname, int flags)
flags = RTLD_LAZY | RTLD_GLOBAL; /* Overriding flags at this time */
return dlopen(libname, flags);
#elif defined(__MINGW32__)
return LoadLibrary(libname);
return LoadLibraryA(libname);
#else
return NULL;
#endif