Sfoglia il codice sorgente

Get rid of redundant buffer

master
Arun Prakash Jana 5 anni fa
parent
commit
fb4728bc31
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A75979F35C080412
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni
  1. +1
    -2
      src/nnn.c

+ 1
- 2
src/nnn.c Vedi File

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

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

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

return &ascbuf[++i];
}


Loading…
Annulla
Salva