Commit 2630b5a3 authored by J. Alexander Treuman's avatar J. Alexander Treuman

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
parent 80dea151
...@@ -1637,12 +1637,12 @@ static void PlaylistInfoPrintInfo(int fd, char *utf8file, char **erroredfile) ...@@ -1637,12 +1637,12 @@ static void PlaylistInfoPrintInfo(int fd, char *utf8file, char **erroredfile)
if (song) { if (song) {
printSongInfo(fd, song); printSongInfo(fd, song);
} else { } else {
fdprintf(fd, "file: %s\n", utf8file); fdprintf(fd, "%s%s\n", SONG_FILE, utf8file);
} }
} }
static void PlaylistInfoPrint(int fd, char *utf8file, char **erroredfile) 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) static void PlaylistLoadIterFunc(int fd, char *temp, char **erroredFile)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment