diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-22 05:30:07 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-22 05:30:07 +0000 |
commit | 11714aceabba8c807c62203c6be70ac8b6f51193 (patch) | |
tree | 3e61576eb82b9d13357fe94ebd96e09b2290e6f4 /apps/wps.c | |
parent | 70a203341f6f6c691e9c4abecbe7096d29995807 (diff) |
fixed compiler error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1914 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps.c')
-rw-r--r-- | apps/wps.c | 4 |
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) case 'h': /* Conditional Filename \ ID3 Title-Artist */ if(id3->artist && id3->title) snprintf(tmpbuf, sizeof(tmpbuf), "%s - %s", - id3->title?id3->title:"<no title>"); - id3->artist?id3->artist:"<no artist>", + id3->title?id3->title:"<no title>", + id3->artist?id3->artist:"<no artist>"); else snprintf(tmpbuf, sizeof(tmpbuf), "%s", szLast?++szLast:id3->path); |