From c536d8749358dfbac1aed5ce3869ca660752f1ab Mon Sep 17 00:00:00 2001 From: leitner Date: Tue, 14 May 2002 20:04:35 +0000 Subject: [PATCH] make fmt_hexdump use lowercase letters --- textcode/fmt_hexdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textcode/fmt_hexdump.c b/textcode/fmt_hexdump.c index 2638400..338a81a 100644 --- a/textcode/fmt_hexdump.c +++ b/textcode/fmt_hexdump.c @@ -4,7 +4,7 @@ #include "haveinline.h" static inline int tohex(char c) { - return c>9?c-10+'A':c+'0'; + return c>9?c-10+'a':c+'0'; } unsigned int fmt_hexdump(char* dest,const char* src,unsigned int len) {