]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/unix/sysv/linux/ia64/sysconf.c (linux_sysconf): Fix a typo.
authorRoland McGrath <roland@gnu.org>
Mon, 4 Oct 2004 22:27:43 +0000 (22:27 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 4 Oct 2004 22:27:43 +0000 (22:27 +0000)
ChangeLog
sysdeps/unix/sysv/linux/ia64/sysconf.c

index cd2e0cac753e42464a2c32b84ee34470aaff24be..3720296e9334ae3ede9fcab36a48d4cd6dc0f447 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-10-04  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/unix/sysv/linux/ia64/sysconf.c (linux_sysconf): Fix a typo.
+
 2004-10-04  Roland McGrath  <roland@redhat.com>
 
        * include/errno.h [RTLD_PRIVATE_ERRNO] (errno): Rename the real symbol
index ea4bde2e437bd859022a064e5d3cb70ff514a316..4b5d1ce2cd5abe775eea109b4d648f2164e349d8 100644 (file)
@@ -32,7 +32,7 @@ static long int linux_sysconf (int name);
 long int
 __sysconf (int name)
 {
-  if (name == _SC_CPUTIME || name == SC_THREAD_CPUTIME)
+  if (name == _SC_CPUTIME || name == _SC_THREAD_CPUTIME)
     return has_cpuclock () ? 200112L : -1;
 
   /* Everything else is handled by the more general code.  */