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:
authorJeff Johnston <jjohnstn@redhat.com>2009-07-30 02:33:40 +0400
committerJeff Johnston <jjohnstn@redhat.com>2009-07-30 02:33:40 +0400
commit1cc1af42c1097995912b33cec556a18e8d162923 (patch)
tree4c94dce4eec69fe2b77708514d9fd460237e3731 /newlib/libc/stdlib
parent0e770e72a73301ce4551a977e058c15aa5c32996 (diff)
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.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;