aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/nnn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 0980e44..ee162e2 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -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'));
}