summaryrefslogtreecommitdiff
path: root/apps/plugins/stats.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/stats.c')
-rw-r--r--apps/plugins/stats.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/stats.c b/apps/plugins/stats.c
index ecf335d3f0..6a70a47ec4 100644
--- a/apps/plugins/stats.c
+++ b/apps/plugins/stats.c
@@ -178,7 +178,8 @@ void traversedir(char* location, char* name)
178 /* Skip .. and . */ 178 /* Skip .. and . */
179 if (rb->strcmp(entry->d_name, ".") && rb->strcmp(entry->d_name, "..")) 179 if (rb->strcmp(entry->d_name, ".") && rb->strcmp(entry->d_name, ".."))
180 { 180 {
181 if (entry->attribute & ATTR_DIRECTORY) { 181 struct dirinfo info = rb->dir_get_info(dir, entry);
182 if (info.attribute & ATTR_DIRECTORY) {
182 traversedir(fullpath, entry->d_name); 183 traversedir(fullpath, entry->d_name);
183 dirs++; 184 dirs++;
184 } 185 }