mirror of
https://github.com/reactos/wine.git
synced 2025-01-21 03:15:18 +00:00
opengl32: Avoid superfluous (void*) cast in LOAD_FUNCPTR macro.
This commit is contained in:
parent
a54ab07823
commit
812c06ae94
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user