diff options
| author | 2016-02-19 14:03:06 +0000 | |
|---|---|---|
| committer | 2016-02-19 14:03:06 +0000 | |
| commit | de1e3394a6700781c49f93bec6745bd8caa74d3c (patch) | |
| tree | 2d131f22194843fe48afe7a35f46d81146b98e13 | |
| parent | 9475edadd1e6e9728c702a8d1dd2a97c29ab8298 (diff) | |
| download | nnn-de1e3394a6700781c49f93bec6745bd8caa74d3c.tar.gz | |
Style fix
| -rw-r--r-- | noice.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |