Skip to content

Commit

Permalink
* sysdeps/unix/sysv/linux/ia64/sysconf.c (linux_sysconf): Fix a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland McGrath committed Oct 4, 2004
1 parent 0c70edc commit 982e38a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/ia64/sysconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 982e38a

Please sign in to comment.