Style fix - noice - small file browser (mirror / fork from 2f30.org)
 (HTM) git clone git://git.codemadness.org/noice
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit de1e3394a6700781c49f93bec6745bd8caa74d3c
 (DIR) parent 9475edadd1e6e9728c702a8d1dd2a97c29ab8298
 (HTM) Author: sin <sin@2f30.org>
       Date:   Fri, 19 Feb 2016 14:03:06 +0000
       
       Style fix
       
       Diffstat:
         M noice.c                             |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git 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;