aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 01565dc..1631348 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -536,9 +536,12 @@ static uint xatoi(const char *str)
static char *xitoa(uint val)
{
static char ascbuf[32] = {0};
- int i;
+ int i = 30;
- for (i = 30; val && i; --i, val /= 10)
+ if (!val)
+ return "0";
+
+ for (; val && i; --i, val /= 10)
ascbuf[i] = '0' + (val % 10);
return &ascbuf[++i];