Fix compiler warning

This commit is contained in:
Keith Whitwell
2006-10-29 09:54:17 +00:00
parent 0a0fb5e0b3
commit a3c86828ed
+1 -1
View File
@@ -89,7 +89,7 @@ _mesa_dlopen(const char *libname, int flags)
return dlopen(libname, flags);
#endif
#else
return (GenericFunc) NULL;
return (void *) NULL;
#endif /* USE_EXTERNAL_DXTN_LIB */
}