Fix two missing voids in prototypes
This commit is contained in:
parent
23818c2a8a
commit
6d4310200c
|
@ -97,9 +97,9 @@ getpcstack(uintptr_t *pcstack, int pcstack_limit, int check_signal)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (check_signal != 0) {
|
if (check_signal != 0) {
|
||||||
void (*sigfunc)() = NULL;
|
void (*sigfunc)(void) = NULL;
|
||||||
int sigfuncsize = 0;
|
int sigfuncsize = 0;
|
||||||
extern void thr_sighndlrinfo(void (**)(), int *);
|
extern void thr_sighndlrinfo(void (**)(void), int *);
|
||||||
|
|
||||||
thr_sighndlrinfo(&sigfunc, &sigfuncsize);
|
thr_sighndlrinfo(&sigfunc, &sigfuncsize);
|
||||||
sigbase = (uintptr_t)sigfunc;
|
sigbase = (uintptr_t)sigfunc;
|
||||||
|
|
Loading…
Reference in New Issue