Fix debug printing negative values
This commit is contained in:
parent
65d476d575
commit
603d870ea0
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ static s32 mini_strlen(const char *s)
|
|||
return len;
|
||||
}
|
||||
|
||||
static s32 mini_itoa(u32 value, u32 radix, s32 uppercase, bool32 unsig, char *buffer)
|
||||
static s32 mini_itoa(s32 value, u32 radix, s32 uppercase, bool32 unsig, char *buffer)
|
||||
{
|
||||
char *pbuffer = buffer;
|
||||
s32 negative = 0;
|
||||
|
|
Loading…
Reference in a new issue