diff options
author | Keith Whitwell <[email protected]> | 2006-10-29 09:54:17 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2006-10-29 09:54:17 +0000 |
commit | a3c86828edc971319455d16153ea1657585d863f (patch) | |
tree | 8472f5cd3d2bc437264fa8e79be47de957c050e9 /src | |
parent | 0a0fb5e0b3cfe61749af41d4200d42982b551cef (diff) |
Fix compiler warning
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/texcompress_s3tc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ } |