# New Ticket Created by   
# Please include the string:  [perl #42313]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=42313 >


load_func is not a void pointer.

Index: src/dynext.c
===================================================================
--- src/dynext.c        (revision 17994)
+++ src/dynext.c        (working copy)
@@ -288,7 +288,7 @@
         string_cstring_free(cinit_func_name);
     }
     else {
-        load_func = (void *)NULL;
+        load_func = NULL;
         init_func = NULL;
     }


Reply via email to