From f6cab706008430622a6e1408d051ef133ff57386 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 13 Sep 2005 21:52:13 +0000 Subject: [PATCH] Fixed a typo git-svn-id: svn://svn.cc65.org/cc65/trunk@3647 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/xsprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/xsprintf.c b/src/common/xsprintf.c index 307d16e18..194d8f99e 100644 --- a/src/common/xsprintf.c +++ b/src/common/xsprintf.c @@ -206,7 +206,7 @@ static void FormatInt (PrintfCtrl* P, uintmax_t Val) /* Determine the translation table */ - P->CharTable = (P->Flags & fUpcase)? "0123456789ABCDEF" : "0123456789abcedf"; + P->CharTable = (P->Flags & fUpcase)? "0123456789ABCDEF" : "0123456789abcdef"; /* Check if the value is negative */ if ((P->Flags & fUnsigned) == 0 && ((intmax_t) Val) < 0) { -- 2.39.5