summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/wps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/wps.c b/apps/wps.c
index c4b027cbc3..82f80dd0ce 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -285,8 +285,8 @@ int wps_load_custom_config(void)
285 case 'h': /* Conditional Filename \ ID3 Title-Artist */ 285 case 'h': /* Conditional Filename \ ID3 Title-Artist */
286 if(id3->artist && id3->title) 286 if(id3->artist && id3->title)
287 snprintf(tmpbuf, sizeof(tmpbuf), "%s - %s", 287 snprintf(tmpbuf, sizeof(tmpbuf), "%s - %s",
288 id3->title?id3->title:"<no title>"); 288 id3->title?id3->title:"<no title>",
289 id3->artist?id3->artist:"<no artist>", 289 id3->artist?id3->artist:"<no artist>");
290 else 290 else
291 snprintf(tmpbuf, sizeof(tmpbuf), "%s", 291 snprintf(tmpbuf, sizeof(tmpbuf), "%s",
292 szLast?++szLast:id3->path); 292 szLast?++szLast:id3->path);