]> git.sur5r.net Git - cc65/commitdiff
Fixed a typo
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 13 Sep 2005 21:52:13 +0000 (21:52 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 13 Sep 2005 21:52:13 +0000 (21:52 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3647 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/xsprintf.c

index 307d16e18d32a378811cc541d7e748c76b05a842..194d8f99eae61e34e17c85dc67d3efda4b3b5c14 100644 (file)
@@ -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) {