From: cuz Date: Tue, 13 Sep 2005 21:52:13 +0000 (+0000) Subject: Fixed a typo X-Git-Tag: V2.12.0~203 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f6cab706008430622a6e1408d051ef133ff57386;p=cc65 Fixed a typo git-svn-id: svn://svn.cc65.org/cc65/trunk@3647 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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) {