From 6d4310200cf26dbebe10e6a1222e86ed0fa558bc Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Wed, 10 Dec 2008 11:30:12 -0800 Subject: [PATCH] Fix two missing voids in prototypes --- zfs/lib/libumem/getpcstack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zfs/lib/libumem/getpcstack.c b/zfs/lib/libumem/getpcstack.c index 8c3a47e19f..4b8b12ced7 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;