Parcourir la source

Get rid of redundant buffer

master
Arun Prakash Jana il y a 5 ans
Parent
révision
fb4728bc31
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: A75979F35C080412
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. +1
    -2
      src/nnn.c

+ 1
- 2
src/nnn.c Voir le fichier

@@ -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];
}


Chargement…
Annuler
Enregistrer