diff --git a/src/tag.c b/src/tag.c index 7415837fe..a98225739 100644 --- a/src/tag.c +++ b/src/tag.c @@ -28,6 +28,7 @@ #include "tagTracker.h" #include "mpd_types.h" #include "gcc.h" +#include "song.h" #include #include @@ -120,7 +121,7 @@ void printMpdTag(int fd, MpdTag * tag) int i; if (tag->time >= 0) - fdprintf(fd, "Time: %i\n", tag->time); + fdprintf(fd, "%s%i\n", SONG_TIME, tag->time); for (i = 0; i < tag->numOfItems; i++) { fdprintf(fd, "%s: %s\n", mpdTagItemKeys[tag->items[i].type],