From: sin Date: Fri, 19 Feb 2016 14:03:06 +0000 (+0000) Subject: Style fix X-Git-Tag: v1.0~92^2~4 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=de1e3394a6700781c49f93bec6745bd8caa74d3c;p=nnn.git Style fix --- diff --git a/noice.c b/noice.c index 6b04d4e0..d9794606 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;