about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-20 18:24:24 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-20 18:24:24 +0000
commit505b474df41fe05012a2e6bac671f002e83419b5 (patch)
tree13ae7499c5b366ae15bcbf0538307d8a217a6dbe
parent48f936a240d666d8adaa342abb7c289dafb1ec03 (diff)
downloadglibc-505b474df41fe05012a2e6bac671f002e83419b5.tar.gz
glibc-505b474df41fe05012a2e6bac671f002e83419b5.tar.xz
glibc-505b474df41fe05012a2e6bac671f002e83419b5.zip
Update.
	* sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Fix
	typo.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/unix/sysv/linux/i386/sigaction.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 81056fb20f..73296e0891 100644
--- 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.
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)
     {