diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-13 23:06:30 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-13 23:06:30 +0000 |
commit | 881d22633972f32b7f422e2f290daf5954a63bc8 (patch) | |
tree | 690f5f605dec26735c059aa1309ce490647fdd25 /apps | |
parent | fd99f2210f3df8889a55230fd310b0724bb37857 (diff) | |
download | rockbox-881d22633972f32b7f422e2f290daf5954a63bc8.tar.gz rockbox-881d22633972f32b7f422e2f290daf5954a63bc8.zip |
allow CRLF or LF or in fact just CR too as line separators
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@990 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/playlist.c | 2 |
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 ) for(count=0; count < nread; count++,p++) { /* Are we on a new line? */ - if(((*p == '\n') || (*p == '\r')) && (!store_index)) + if((*p == '\n') || (*p == '\r')) { store_index = 1; } |