diff options
| author | 2020-02-08 19:58:30 +0530 | |
|---|---|---|
| committer | 2020-02-08 19:58:30 +0530 | |
| commit | 58357912bcc60d475c6d68b84e922f6850850c17 (patch) | |
| tree | 32092563c3369f08f3cfd859415e13c2ae1c85dd /src | |
| parent | 13e28fdecc9c46db210afabb686a2ae9da2ce401 (diff) | |
| download | nnn-58357912bcc60d475c6d68b84e922f6850850c17.tar.gz | |
Fix build break
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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')); } |