From: Keith Whitwell Date: Sun, 29 Oct 2006 09:54:17 +0000 (+0000) Subject: Fix compiler warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a3c86828edc971319455d16153ea1657585d863f;p=mesa.git Fix compiler warning --- diff --git a/src/mesa/main/texcompress_s3tc.c b/src/mesa/main/texcompress_s3tc.c index 3ccc8a8df75..65ecaba3a30 100644 --- a/src/mesa/main/texcompress_s3tc.c +++ b/src/mesa/main/texcompress_s3tc.c @@ -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 */ }