diff options
Diffstat (limited to 'libc/sysdeps/linux/avr32')
-rw-r--r-- | libc/sysdeps/linux/avr32/sigaction.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/avr32/sigaction.c b/libc/sysdeps/linux/avr32/sigaction.c index 45d0abb5a..8113c9ca6 100644 --- a/libc/sysdeps/linux/avr32/sigaction.c +++ b/libc/sysdeps/linux/avr32/sigaction.c @@ -46,8 +46,8 @@ int __libc_sigaction(int signum, const struct sigaction *act, /* NB: kernel (as of 2.6.25) will return EINVAL * if sizeof(kact.sa_mask) does not match kernel's sizeof(sigset_t) */ result = __syscall_rt_sigaction(signum, - act ? __ptrvalue(&kact) : NULL, - oldact ? __ptrvalue(&koact) : NULL, + act ? &kact : NULL, + oldact ? &koact : NULL, sizeof(kact.sa_mask)); if (oldact && result >= 0) { |