aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar sin <sin@2f30.org>2016-02-19 14:03:06 +0000
committerGravatar sin <sin@2f30.org>2016-02-19 14:03:06 +0000
commitde1e3394a6700781c49f93bec6745bd8caa74d3c (patch)
tree2d131f22194843fe48afe7a35f46d81146b98e13
parent9475edadd1e6e9728c702a8d1dd2a97c29ab8298 (diff)
downloadnnn-de1e3394a6700781c49f93bec6745bd8caa74d3c.tar.gz
Style fix
-rw-r--r--noice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/noice.c b/noice.c
index 6b04d4e..d979460 100644
--- a/noice.c
+++ b/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;