diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 13:53:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 13:53:55 +0200 |
commit | dc8b64fdef1f8bc4499eef3aca17ed336ea3569b (patch) | |
tree | ba98b059e544ddecd774bd4c97ce66898cba3be0 /src/song_print.h | |
parent | 5609a1fcd09c498fdcdfe0f535052e8d8c3ef05c (diff) | |
download | mpd-dc8b64fdef1f8bc4499eef3aca17ed336ea3569b.tar.gz mpd-dc8b64fdef1f8bc4499eef3aca17ed336ea3569b.tar.xz mpd-dc8b64fdef1f8bc4499eef3aca17ed336ea3569b.zip |
pass "struct client" to dbUtils.c, song.c, tag_print.c
Don't pass the raw file descriptor around. This migration patch is
rather large, because all of the sources have inter dependencies - we
have to change all of them at the same time.
Diffstat (limited to '')
-rw-r--r-- | src/song_print.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/song_print.h b/src/song_print.h index 8a97759bf..bbc034248 100644 --- a/src/song_print.h +++ b/src/song_print.h @@ -21,10 +21,10 @@ #include "song.h" -int printSongInfo(int fd, Song * song); +int printSongInfo(struct client *client, Song * song); -int printSongInfoFromList(int fd, SongList * list); +int printSongInfoFromList(struct client *client, SongList * list); -void printSongUrl(int fd, Song * song); +void printSongUrl(struct client *client, Song * song); #endif |