diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/itoa.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -8,7 +8,6 @@ ltostr(char *s, int size, unsigned long l, bool sign, int radix) if((long)l < 0 && sign) { l = -((long)l); if(size > wsize && s != 0) s[wsize] = '-'; - wsize++; } for(unsigned long lv = l; lv != 0; lv /= radix) { |