Commit 20bf0291 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

gdi32: Remove superfluous cast.

parent 49f550e8
......@@ -121,7 +121,7 @@ static BOOL init_opengl(void)
goto failed;
}
}
#define LOAD_FUNCPTR(f) do if (!(p##f = (void *)wine_dlsym( osmesa_handle, #f, buffer, sizeof(buffer) ))) \
#define LOAD_FUNCPTR(f) do if (!(p##f = wine_dlsym( osmesa_handle, #f, buffer, sizeof(buffer) ))) \
{ \
ERR( "%s not found in %s (%s), disabling.\n", #f, SONAME_LIBOSMESA, buffer ); \
goto failed; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment