This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Fix a typo


2004-10-04  H.J. Lu  <hongjiu.lu@intel.com>

	* sysdeps/unix/sysv/linux/ia64/sysconf.c (linux_sysconf): Fix a
	typo.

--- sysdeps/unix/sysv/linux/ia64/sysconf.c.typo	2004-10-04 12:21:56.000000000 -0700
+++ sysdeps/unix/sysv/linux/ia64/sysconf.c	2004-10-04 15:15:54.000000000 -0700
@@ -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.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]