summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playlist_catalog.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/playlist_catalog.c b/apps/playlist_catalog.c
index ba12ff6d98..98a2bb4cdb 100644
--- a/apps/playlist_catalog.c
+++ b/apps/playlist_catalog.c
@@ -233,8 +233,10 @@ static int add_to_playlist(const char* playlist, bool new_playlist,
233 fd = open(playlist, O_CREAT|O_WRONLY|O_APPEND, 0666); 233 fd = open(playlist, O_CREAT|O_WRONLY|O_APPEND, 0666);
234 234
235 if(fd < 0) 235 if(fd < 0)
236 {
237 splash(HZ*2, ID2P(LANG_FAILED));
236 return result; 238 return result;
237 239 }
238 /* In case we're in the playlist directory */ 240 /* In case we're in the playlist directory */
239 reload_directory(); 241 reload_directory();
240 242