Style fix

This commit is contained in:
sin 2016-02-19 14:03:06 +00:00
parent 9475edadd1
commit de1e3394a6
1 changed files with 2 additions and 2 deletions

View File

@ -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;