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
This commit is contained in:
parent
80dea15184
commit
2630b5a30f
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user