summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index e46a7faa9e..7b1ec5990a 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -142,7 +142,7 @@ void add_indices_to_playlist( playlist_info_t *playlist )
142 for(count=0; count < nread; count++,p++) { 142 for(count=0; count < nread; count++,p++) {
143 143
144 /* Are we on a new line? */ 144 /* Are we on a new line? */
145 if(((*p == '\n') || (*p == '\r')) && (!store_index)) 145 if((*p == '\n') || (*p == '\r'))
146 { 146 {
147 store_index = 1; 147 store_index = 1;
148 } 148 }