ports/devel/libsigsegv/patches/patch-src_handler-unix_c

13 lines
389 B
Text
Raw Normal View History

2023-09-08 05:21:37 +00:00
Index: src/handler-unix.c
--- src/handler-unix.c.orig
+++ src/handler-unix.c
@@ -382,7 +382,7 @@ install_for (int sig)
struct sigaction action;
#ifdef SIGSEGV_FAULT_ADDRESS_FROM_SIGINFO
- action.sa_sigaction = &sigsegv_handler;
+ action.sa_sigaction = (void (*) (int, siginfo_t *, void *)) &sigsegv_handler;
#else
action.sa_handler = (void (*) (int)) &sigsegv_handler;
#endif