Remove redundant #ifdef, fix compiler warning

This commit is contained in:
Keith Whitwell 2005-04-29 15:37:27 +00:00
parent 2c19069182
commit a6ebcdfe7d
1 changed files with 1 additions and 4 deletions

View File

@ -40,8 +40,6 @@
*/ */
#ifdef USE_GLFBDEV_DRIVER
#include "glheader.h" #include "glheader.h"
#include <linux/fb.h> #include <linux/fb.h>
#include "GL/glfbdev.h" #include "GL/glfbdev.h"
@ -328,7 +326,7 @@ glFBDevGetProcAddress( const char *procName )
return entry->func; return entry->func;
} }
} }
return _glapi_get_proc_address(procName); return (const void *)_glapi_get_proc_address(procName);
} }
@ -797,5 +795,4 @@ glFBDevMakeCurrent( GLFBDevContextPtr context,
return 1; return 1;
} }
#endif /* USE_GLFBDEV_DRIVER */