diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-24 10:17:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-24 10:17:23 +0000 |
commit | 440d13e289b6716dd5105d7209107da6821ce1b4 (patch) | |
tree | 43cd287039bc51e7ad1cf3150724a46090d2e6f4 /ctype | |
parent | d74e76f9f6b05428358a6248ac506dc38c323c7e (diff) | |
download | glibc-440d13e289b6716dd5105d7209107da6821ce1b4.tar glibc-440d13e289b6716dd5105d7209107da6821ce1b4.tar.gz glibc-440d13e289b6716dd5105d7209107da6821ce1b4.tar.bz2 glibc-440d13e289b6716dd5105d7209107da6821ce1b4.zip |
Update.
1999-01-24 Ulrich Drepper <drepper@cygnus.com>
* ctype/ctype.c (toupper): Correct variable names from lat change.
(tolower): Likewise.
Diffstat (limited to 'ctype')
-rw-r--r-- | ctype/ctype.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctype/ctype.c b/ctype/ctype.c index 1c684026fe..ce6d7097f0 100644 --- a/ctype/ctype.c +++ b/ctype/ctype.c @@ -39,11 +39,11 @@ func (isxdigit, _ISxdigit) int tolower (int c) { - return __c >= -128 && __c < 256 ? __tolower (__c) : __c; + return c >= -128 && c < 256 ? __tolower (c) : c; } int toupper (int c) { - return __c >= -128 && __c < 256 ? __toupper (__c) : __c; + return c >= -128 && c < 256 ? __toupper (c) : c; } |