Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 20 Dec 2002 18:24:24 +0000 (18:24 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 20 Dec 2002 18:24:24 +0000 (18:24 +0000)
* sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Fix
typo.

ChangeLog
sysdeps/unix/sysv/linux/i386/sigaction.c

index 81056fb..73296e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-12-20  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Fix
+       typo.
+
        * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Define SHM_HUGETLB.
        * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
        * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Likewise.
index 9ee69e8..361afba 100644 (file)
@@ -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)
     {