summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2006-10-29 09:54:17 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2006-10-29 09:54:17 +0000
commita3c86828edc971319455d16153ea1657585d863f (patch)
tree8472f5cd3d2bc437264fa8e79be47de957c050e9 /src
parent0a0fb5e0b3cfe61749af41d4200d42982b551cef (diff)
Fix compiler warning
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/texcompress_s3tc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texcompress_s3tc.c b/src/mesa/main/texcompress_s3tc.c
index 3ccc8a8df7..65ecaba3a3 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 */
}