summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playlist.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index e3dc62625a..f702c1ad9d 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -246,7 +246,10 @@ static void create_control(struct playlist_info* playlist)
246{ 246{
247 playlist->control_fd = creat(playlist->control_filename, 0000200); 247 playlist->control_fd = creat(playlist->control_filename, 0000200);
248 if (playlist->control_fd < 0) 248 if (playlist->control_fd < 0)
249 splash(HZ*2, true, str(LANG_PLAYLIST_CONTROL_ACCESS_ERROR)); 249 {
250 splash(HZ*2, true, "%s (%d)", str(LANG_PLAYLIST_CONTROL_ACCESS_ERROR),
251 playlist->control_fd);
252 }
250 playlist->control_created = true; 253 playlist->control_created = true;
251} 254}
252 255