Fix build failure

This commit is contained in:
Arun Prakash Jana 2017-06-11 20:09:42 +05:30
parent 2a1f99526f
commit 8404c0fd04
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 2 deletions

4
nnn.c
View File

@ -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