]> granicus.if.org Git - sudo/commitdiff
Quiet a compiler warning and fix sudo_preload_table external definition.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 11 Oct 2010 13:11:46 +0000 (09:11 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 11 Oct 2010 13:11:46 +0000 (09:11 -0400)
compat/dlopen.c

index 43446563746a04d1620e70f6e49f0a101f280256..8217ff57ef7f113553e102509f432f6782451199 100644 (file)
@@ -100,12 +100,12 @@ struct sudo_preload_table {
     const char *name;
     void *address;
 };
-extern sudo_preload_table;
+extern struct sudo_preload_table sudo_preload_table[];
 
 void *
 dlopen(const char *path, int mode)
 {
-    return path;
+    return (void *)path;
 }
 
 int