Browse Source

mesa: Fix windows build when UNICODE is defined.

tags/mesa_20090313
José Fonseca 16 years ago
parent
commit
ca337076b3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/mesa/main/dlopen.c

+ 1
- 1
src/mesa/main/dlopen.c 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

Loading…
Cancel
Save