diff options
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/song.h b/src/song.h index 104ad1686..d4fde5470 100644 --- a/src/song.h +++ b/src/song.h @@ -58,9 +58,9 @@ void freeSongList(SongList * list); Song *addSongToList(SongList * list, char *url, char *utf8path, int songType, struct _Directory *parentDir); -int printSongInfo(FILE * fp, Song * song); +int printSongInfo(int fd, Song * song); -int printSongInfoFromList(FILE * fp, SongList * list); +int printSongInfoFromList(int fd, SongList * list); void writeSongInfoFromList(FILE * fp, SongList * list); @@ -69,7 +69,7 @@ void readSongInfoIntoList(FILE * fp, SongList * list, int updateSongInfo(Song * song); -void printSongUrl(FILE * fp, Song * song); +void printSongUrl(int fd, Song * song); char *getSongUrl(Song * song); |