summaryrefslogtreecommitdiffstats
path: root/apps/radio/radioart.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/radio/radioart.c')
-rw-r--r--apps/radio/radioart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/radio/radioart.c b/apps/radio/radioart.c
index 4268272cdf..07fab814dd 100644
--- a/apps/radio/radioart.c
+++ b/apps/radio/radioart.c
@@ -99,7 +99,7 @@ static int load_radioart_image(struct radioart *ra, const char* preset_name,
int radio_get_art_hid(struct dim *requested_dim)
{
int preset = radio_current_preset();
- int i, free_idx = -1;
+ int free_idx = -1;
const char* preset_name;
if (radio_scan_mode() || preset < 0)
return -1;
@@ -108,7 +108,7 @@ int radio_get_art_hid(struct dim *requested_dim)
return -1;
#endif
preset_name = radio_get_preset_name(preset);
- for(i=0;i<MAX_RADIOART_IMAGES;i++)
+ for (int i=0; i<MAX_RADIOART_IMAGES; i++)
{
if (radioart[i].handle < 0)
{