ソースを参照

Fix wrong lint report

master
Arun Prakash Jana 4年前
コミット
b87cdcde60
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c ファイルの表示

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


読み込み中…
キャンセル
保存