Browse Source

Get rid of redundant buffer

master
Arun Prakash Jana 5 years ago
parent
commit
fb4728bc31
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/nnn.c

+ 1
- 2
src/nnn.c View File

@@ -537,12 +537,11 @@ static uint xatoi(const char *str)


static char *xitoa(uint val) static char *xitoa(uint val)
{ {
const char hexbuf[] = "0123456789";
static char ascbuf[32] = {0}; static char ascbuf[32] = {0};
int i; int i;


for (i = 30; val && i; --i, val /= 10) for (i = 30; val && i; --i, val /= 10)
ascbuf[i] = hexbuf[val % 10];
ascbuf[i] = '0' + (val % 10);


return &ascbuf[++i]; return &ascbuf[++i];
} }


Loading…
Cancel
Save