aboutsummaryrefslogtreecommitdiffstats
path: root/src/strfsong.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/strfsong.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strfsong.c b/src/strfsong.c
index bac6d472f..4c2bf38d2 100644
--- a/src/strfsong.c
+++ b/src/strfsong.c
@@ -184,7 +184,7 @@ _strfsong(gchar *s,
else if (strncmp("%time%", p, n) == 0)
{
if (song->time != MPD_SONG_NO_TIME)
- temp = g_strdup_printf("%d:%d",
+ temp = g_strdup_printf("%d:%02d",
song->time / 60,
song->time % 60 + 1);
}