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.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/stats.c b/apps/plugins/stats.c
index 07f2f8efb8..5392910a15 100644
--- a/apps/plugins/stats.c
+++ b/apps/plugins/stats.c
@@ -115,12 +115,12 @@ static bool cancel;
115#endif 115#endif
116 116
117/* we don't have yet a filetype attribute for image files */ 117/* we don't have yet a filetype attribute for image files */
118const char *image_exts[] = {"bmp","jpg","jpe","jpeg","png","ppm"}; 118static const char *image_exts[] = {"bmp","jpg","jpe","jpeg","png","ppm"};
119 119
120/* neither for video ones */ 120/* neither for video ones */
121const char *video_exts[] = {"mpg","mpeg","mpv","m2v"}; 121static const char *video_exts[] = {"mpg","mpeg","mpv","m2v"};
122 122
123void prn(const char *str, int y) 123static void prn(const char *str, int y)
124{ 124{
125 rb->lcd_puts(0,y,str); 125 rb->lcd_puts(0,y,str);
126#ifdef HAVE_REMOTE_LCD 126#ifdef HAVE_REMOTE_LCD
@@ -128,7 +128,7 @@ void prn(const char *str, int y)
128#endif 128#endif
129} 129}
130 130
131void update_screen(void) 131static void update_screen(void)
132{ 132{
133 char buf[32]; 133 char buf[32];
134 134
@@ -165,7 +165,7 @@ void update_screen(void)
165#endif 165#endif
166} 166}
167 167
168void traversedir(char* location, char* name) 168static void traversedir(char* location, char* name)
169{ 169{
170 int button; 170 int button;
171 struct dirent *entry; 171 struct dirent *entry;