diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-20 18:24:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-20 18:24:24 +0000 |
commit | 505b474df41fe05012a2e6bac671f002e83419b5 (patch) | |
tree | 13ae7499c5b366ae15bcbf0538307d8a217a6dbe /sysdeps | |
parent | 48f936a240d666d8adaa342abb7c289dafb1ec03 (diff) | |
download | glibc-505b474df41fe05012a2e6bac671f002e83419b5.tar glibc-505b474df41fe05012a2e6bac671f002e83419b5.tar.gz glibc-505b474df41fe05012a2e6bac671f002e83419b5.tar.bz2 glibc-505b474df41fe05012a2e6bac671f002e83419b5.zip |
Update.
* sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Fix
typo.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/sigaction.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sigaction.c b/sysdeps/unix/sysv/linux/i386/sigaction.c index 9ee69e8054..361afbafcb 100644 --- a/sysdeps/unix/sysv/linux/i386/sigaction.c +++ b/sysdeps/unix/sysv/linux/i386/sigaction.c @@ -131,9 +131,9 @@ __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact) k_newact.sa_restorer = &restore; } - result = INTERNAL_SYCALL (sigaction, 3, sig, - act ? __ptrvalue (&k_newact) : 0, - oact ? __ptrvalue (&k_oldact) : 0); + result = INTERNAL_SYSCALL (sigaction, 3, sig, + act ? __ptrvalue (&k_newact) : 0, + oact ? __ptrvalue (&k_oldact) : 0); if (result < 0) { |