diff options
Diffstat (limited to 'newlib/libc')
-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; |