From: Brian Behlendorf Date: Wed, 10 Dec 2008 19:30:12 +0000 (-0800) Subject: Fix two missing voids in prototypes X-Git-Tag: zfs-0.4.4~12^2~239^2^2^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d4310200cf26dbebe10e6a1222e86ed0fa558bc;p=zfs Fix two missing voids in prototypes --- diff --git a/zfs/lib/libumem/getpcstack.c b/zfs/lib/libumem/getpcstack.c index 8c3a47e19..4b8b12ced 100644 --- a/zfs/lib/libumem/getpcstack.c +++ b/zfs/lib/libumem/getpcstack.c @@ -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;