Commit 812c06ae authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

opengl32: Avoid superfluous (void*) cast in LOAD_FUNCPTR macro.

parent a54ab078
......@@ -345,7 +345,7 @@ static void *load_libglu(void)
return NULL;
}
#define LOAD_FUNCPTR(f) if((p##f = (void*)wine_dlsym(handle, #f, NULL, 0)) == NULL) goto sym_not_found;
#define LOAD_FUNCPTR(f) if((p##f = wine_dlsym(handle, #f, NULL, 0)) == NULL) goto sym_not_found;
LOAD_FUNCPTR(gluNewTess)
LOAD_FUNCPTR(gluDeleteTess)
LOAD_FUNCPTR(gluTessBeginContour)
......
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