Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r--newlib/libc/stdlib/a64l.c2
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;