Browse Source

Fix build break

master
Arun Prakash Jana 5 years ago
parent
commit
58357912bc
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c View File

@@ -4236,7 +4236,7 @@ static blkcnt_t dirwalk(char *path, struct stat *psb)
}

/* Skip self and parent */
static bool selforparent(char *path)
static bool selforparent(const char *path)
{
return path[0] == '.' && (path[1] == '\0' || (path[1] == '.' && path[2] == '\0'));
}


Loading…
Cancel
Save