diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-03-20 20:16:25 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-03-20 20:16:25 +0000 |
commit | 2630b5a30fbca62f31d45346b782f9e00a88633d (patch) | |
tree | 5b8a80bc85bfe3a14573252259376d9c81f56f05 | |
parent | 80dea151847fae6afd500cd3db8e16c79c192911 (diff) | |
download | mpd-2630b5a30fbca62f31d45346b782f9e00a88633d.tar.gz mpd-2630b5a30fbca62f31d45346b782f9e00a88633d.tar.xz mpd-2630b5a30fbca62f31d45346b782f9e00a88633d.zip |
Use SONG_FILE instead of literal "file: " for consistency with db code.
git-svn-id: https://svn.musicpd.org/mpd/trunk@5669 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist.c b/src/playlist.c index 9d9c2d60f..9f4623e61 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1637,12 +1637,12 @@ static void PlaylistInfoPrintInfo(int fd, char *utf8file, char **erroredfile) if (song) { printSongInfo(fd, song); } else { - fdprintf(fd, "file: %s\n", utf8file); + fdprintf(fd, "%s%s\n", SONG_FILE, utf8file); } } static void PlaylistInfoPrint(int fd, char *utf8file, char **erroredfile) { - fdprintf(fd, "file: %s\n", utf8file); + fdprintf(fd, "%s%s\n", SONG_FILE, utf8file); } static void PlaylistLoadIterFunc(int fd, char *temp, char **erroredFile) |