Fix wrong lint report

This commit is contained in:
Arun Prakash Jana 2020-03-28 09:45:22 +05:30
parent 22ccf5e2e6
commit b87cdcde60
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

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