Browse Source

Fix wrong lint report

master
Arun Prakash Jana 4 years ago
parent
commit
b87cdcde60
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

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


Loading…
Cancel
Save