diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-03-28 09:45:22 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-03-28 09:45:22 +0530 |
commit | b87cdcde60c74839a833bd75f00d08e9edf41e0d (patch) | |
tree | 98e579879fa78eb2806f40d7c91876614df9ee89 /src | |
parent | 22ccf5e2e6a982d32872c71abc7c6ca14dfe1223 (diff) | |
download | nnn-b87cdcde60c74839a833bd75f00d08e9edf41e0d.tar.gz |
Fix wrong lint report
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4430,7 +4430,7 @@ static int dentfill(char *path, struct entry **dents) continue; if (S_ISDIR(sb.st_mode)) { - if (sb_path.st_dev == sb.st_dev) { + if (sb_path.st_dev == sb.st_dev) { // NOLINT mkpath(path, namep, buf); dir_blocks += dirwalk(buf, &sb); |