aboutsummaryrefslogtreecommitdiff
path: root/sys/libkern
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1996-01-24 20:51:26 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1996-01-24 20:51:26 +0000
commitf0fb9bf18f8f8f3a2109754a48aad3f9a21bde8b (patch)
treec7b880650d89ece9cb77a2cd2cc12949364176dc /sys/libkern
parentfde327d6ab5742c42cc22e519eaea692908e1686 (diff)
Notes
Diffstat (limited to 'sys/libkern')
-rw-r--r--sys/libkern/bcd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/libkern/bcd.c b/sys/libkern/bcd.c
index 5e3e56f684ede..540ed5f61f66f 100644
--- a/sys/libkern/bcd.c
+++ b/sys/libkern/bcd.c
@@ -31,4 +31,5 @@ u_char const bin2bcd_data[] = {
0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99
};
-char const hex2ascii_data[] = "0123456789abcdef";
+/* This is actually used with radix [2..36] */
+char const hex2ascii_data[] = "0123456789abcdefghijklmnopqrstuvwxyz";