aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c')
-rw-r--r--sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c b/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c
index 28fa16fe4e..1f214173fe 100644
--- a/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c
@@ -39,9 +39,8 @@
if (new_sp < cur_sp) \
{ \
stack_t oss; \
- INTERNAL_SYSCALL_DECL (err); \
- int res = INTERNAL_SYSCALL (sigaltstack, err, 2, NULL, &oss); \
- if (!INTERNAL_SYSCALL_ERROR_P (res, err)) \
+ int res = INTERNAL_SYSCALL_CALL (sigaltstack, NULL, &oss); \
+ if (!INTERNAL_SYSCALL_ERROR_P (res)) \
{ \
if ((oss.ss_flags & SS_ONSTACK) == 0 \
|| ((uintptr_t) (oss.ss_sp + oss.ss_size) - new_sp \