summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/starfield.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c
index cc8c8b7d20..c697bae624 100644
--- a/apps/plugins/starfield.c
+++ b/apps/plugins/starfield.c
@@ -174,7 +174,7 @@ static inline void starfield_move_and_draw(struct starfield * starfield)
174 174
175static struct starfield starfield; 175static struct starfield starfield;
176 176
177int main(void) 177int plugin_main(void)
178{ 178{
179 char str_buffer[40]; 179 char str_buffer[40];
180 int button, t_disp=0; 180 int button, t_disp=0;
@@ -251,7 +251,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
251 if (rb->global_settings->backlight_timeout > 0) 251 if (rb->global_settings->backlight_timeout > 0)
252 rb->backlight_set_timeout(1);/* keep the light on */ 252 rb->backlight_set_timeout(1);/* keep the light on */
253 253
254 ret = main(); 254 ret = plugin_main();
255 255
256 return ret; 256 return ret;
257} 257}