about summary refs log tree commit diff
path: root/stdlib/l64a.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/l64a.c')
-rw-r--r--stdlib/l64a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/l64a.c b/stdlib/l64a.c
index ad19a3b6eb..ac2cb64804 100644
--- a/stdlib/l64a.c
+++ b/stdlib/l64a.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
 
@@ -43,7 +43,7 @@ l64a (n)
 
   for (cnt = 5; cnt >= 0; --cnt)
     {
-      result[cnt] = n & 0x3f;
+      result[cnt] = conv_table[n & 0x3f];
       n >>= 6;
     }