]> granicus.if.org Git - zfs/commitdiff
Fix two missing voids in prototypes
authorBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 10 Dec 2008 19:30:12 +0000 (11:30 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 10 Dec 2008 19:30:12 +0000 (11:30 -0800)
zfs/lib/libumem/getpcstack.c

index 8c3a47e19f4e959f0412716b9abd88fc7c8cf795..4b8b12ced709f4f91edd5aee6011a6960f35cbfa 100644 (file)
@@ -97,9 +97,9 @@ getpcstack(uintptr_t *pcstack, int pcstack_limit, int check_signal)
        }
 
        if (check_signal != 0) {
-               void (*sigfunc)() = NULL;
+               void (*sigfunc)(void) = NULL;
                int sigfuncsize = 0;
-               extern void thr_sighndlrinfo(void (**)(), int *);
+               extern void thr_sighndlrinfo(void (**)(void), int *);
 
                thr_sighndlrinfo(&sigfunc, &sigfuncsize);
                sigbase = (uintptr_t)sigfunc;