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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/stats.c b/apps/plugins/stats.c
index d3cf9dc5a7..b928c0c4db 100644
--- a/apps/plugins/stats.c
+++ b/apps/plugins/stats.c
@@ -164,7 +164,7 @@ void traversedir(char* location, char* name)
164 if (dir) { 164 if (dir) {
165 entry = rb->readdir(dir); 165 entry = rb->readdir(dir);
166 while (entry) { 166 while (entry) {
167 if (abort == true) 167 if (abort)
168 break; 168 break;
169 /* Skip .. and . */ 169 /* Skip .. and . */
170 if (rb->strcmp(entry->d_name, ".") && rb->strcmp(entry->d_name, "..")) 170 if (rb->strcmp(entry->d_name, ".") && rb->strcmp(entry->d_name, ".."))
@@ -227,7 +227,7 @@ enum plugin_status plugin_start(const void* parameter)
227 lasttick = *rb->current_tick; 227 lasttick = *rb->current_tick;
228 228
229 traversedir("", ""); 229 traversedir("", "");
230 if (abort == true) { 230 if (abort) {
231 rb->splash(HZ, "Aborted"); 231 rb->splash(HZ, "Aborted");
232 return PLUGIN_OK; 232 return PLUGIN_OK;
233 } 233 }