mirror of
https://github.com/jarun/nnn.git
synced 2025-01-24 09:46:38 +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) {
|
while ((dp = readdir(dirp)) != NULL) {
|
||||||
/* Skip self and parent */
|
/* Skip self and parent */
|
||||||
if (strcmp(dp->d_name, ".") == 0
|
if (strcmp(dp->d_name, ".") == 0 ||
|
||||||
|| strcmp(dp->d_name, "..") == 0)
|
strcmp(dp->d_name, "..") == 0)
|
||||||
continue;
|
continue;
|
||||||
if (filter(re, dp->d_name) == 0)
|
if (filter(re, dp->d_name) == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue