diff options
Diffstat (limited to 'components/num_files.c')
-rw-r--r-- | components/num_files.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/num_files.c b/components/num_files.c index 8205562..e4b4281 100644 --- a/components/num_files.c +++ b/components/num_files.c @@ -20,9 +20,9 @@ num_files(const char *path) num = 0; while ((dp = readdir(fd))) { - if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) { + if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) continue; /* skip self and parent */ - } + num++; } |