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.
This commit is contained in:
Jeff Johnston 2009-07-29 22:33:40 +00:00
parent 0e770e72a7
commit 1cc1af42c1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.
2009-07-29 Corinna Vinschen <corinna@vinschen.de>
* libc/stdlib/mbtowc_r.c (__utf8_mbtowc): Rework UTF-16 surrogate

View File

@ -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;