summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/playlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index d9c56b62b1..b73aaa85c7 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -303,7 +303,7 @@ void add_indices_to_playlist(void)
303 int i = 0; 303 int i = 0;
304 int count = 0; 304 int count = 0;
305 int next_tick = current_tick + HZ; 305 int next_tick = current_tick + HZ;
306 bool store_index = true; 306 bool store_index;
307 307
308 unsigned char *p = playlist_buffer; 308 unsigned char *p = playlist_buffer;
309 char line[16]; 309 char line[16];
@@ -338,7 +338,7 @@ void add_indices_to_playlist(void)
338 } 338 }
339 else if(store_index) 339 else if(store_index)
340 { 340 {
341 store_index = false; 341 store_index = false;
342 342
343 if(playlist.in_ram || (*p != '#')) 343 if(playlist.in_ram || (*p != '#'))
344 { 344 {