]> git.mxchange.org Git - simgear.git/commitdiff
Some small updates.
authorehofman <ehofman>
Sun, 27 Jun 2004 08:09:56 +0000 (08:09 +0000)
committerehofman <ehofman>
Sun, 27 Jun 2004 08:09:56 +0000 (08:09 +0000)
simgear/screen/extensions.cxx

index 420789eb6aa49e97c23efcdcc076fc08a3a1286a..21db7136409c915265aae8504bd0edb9c9eb47e7 100644 (file)
@@ -101,7 +101,7 @@ void* macosxGetGLProcAddress(const char *func) {
 
 void *SGGetGLProcAddress(const char *func) {
     static void *libHandle = NULL;
-    void (*fptr)() = NULL;
+    void *fptr = NULL;
 
     /*
      * Clear the error buffer
@@ -112,7 +112,7 @@ void *SGGetGLProcAddress(const char *func) {
         libHandle = dlopen("libGL.so", RTLD_LAZY);
 
     if (libHandle != NULL) {
-        fptr = (void (*)()) dlsym(libHandle, func);
+        fptr = dlsym(libHandle, func);
 
         char *error = dlerror();
         if (error)