mirror of
https://github.com/jarun/nnn.git
synced 2025-01-24 01:36:53 +00:00
Style fix
This commit is contained in:
parent
9475edadd1
commit
de1e3394a6
4
noice.c
4
noice.c
|
@ -433,8 +433,8 @@ dentfill(char *path, struct entry **dents,
|
|||
|
||||
while ((dp = readdir(dirp)) != NULL) {
|
||||
/* Skip self and parent */
|
||||
if (strcmp(dp->d_name, ".") == 0
|
||||
|| strcmp(dp->d_name, "..") == 0)
|
||||
if (strcmp(dp->d_name, ".") == 0 ||
|
||||
strcmp(dp->d_name, "..") == 0)
|
||||
continue;
|
||||
if (filter(re, dp->d_name) == 0)
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue