diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-07-29 22:33:40 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-07-29 22:33:40 +0000 |
commit | 1cc1af42c1097995912b33cec556a18e8d162923 (patch) | |
tree | 4c94dce4eec69fe2b77708514d9fd460237e3731 /newlib/libc/stdlib | |
parent | 0e770e72a73301ce4551a977e058c15aa5c32996 (diff) | |
download | cygnal-1cc1af42c1097995912b33cec556a18e8d162923.tar.gz cygnal-1cc1af42c1097995912b33cec556a18e8d162923.tar.bz2 cygnal-1cc1af42c1097995912b33cec556a18e8d162923.zip |
2009-07-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/a64l.c: Fix to use 'a' instead of 'A' in calculation
when a lower-case character is detected.
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r-- | newlib/libc/stdlib/a64l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/a64l.c b/newlib/libc/stdlib/a64l.c index 42fc2d2fa..ee3d40d49 100644 --- a/newlib/libc/stdlib/a64l.c +++ b/newlib/libc/stdlib/a64l.c @@ -172,7 +172,7 @@ _DEFUN (a64l, (input), case 'x': case 'y': case 'z': - digit = (ch - 'A') + 38; + digit = (ch - 'a') + 38; break; default: digit = 0; |