mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 06:30:16 +00:00
Fixed a typo
git-svn-id: svn://svn.cc65.org/cc65/trunk@3647 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
00f24fe76a
commit
f6cab70600
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user