aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nnn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nnn.c b/nnn.c
index 23eaa43..4fd2b21 100644
--- a/nnn.c
+++ b/nnn.c
@@ -1312,7 +1312,7 @@ static int
show_help(void)
{
char tmp[] = "/tmp/nnnXXXXXX";
- int fd = mkstemp(tmp);
+ int i = 0, fd = mkstemp(tmp);
if (fd == -1)
return -1;
@@ -1357,7 +1357,7 @@ show_help(void)
if (getenv("NNN_BMS")) {
dprintf(fd, "BOOKMARKS\n");
- for (int i = 0; i < MAX_BM; i++)
+ for (; i < MAX_BM; i++)
if (bookmark[i].key)
dprintf(fd, " %s: %s\n", bookmark[i].key, bookmark[i].loc);
else