diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-10-07 22:06:59 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-07 22:06:59 +0200 |
commit | e19f6905d9c209d7587177dbfdbc58869a2167cc (patch) | |
tree | cd48ac5c2df14517351de7fa00b4e30d316deca6 /src/song_print.h | |
parent | 0d34815f6cfe1a75467e7c8f9406ff15bcbe10ba (diff) | |
download | mpd-e19f6905d9c209d7587177dbfdbc58869a2167cc.tar.gz mpd-e19f6905d9c209d7587177dbfdbc58869a2167cc.tar.xz mpd-e19f6905d9c209d7587177dbfdbc58869a2167cc.zip |
song: replace printSong* with song_print_*
This make argument order more consistent for iterators.
Additionally, these now return ssize_t results for error
checking.
Diffstat (limited to '')
-rw-r--r-- | src/song_print.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/song_print.h b/src/song_print.h index bc7560e88..78537f064 100644 --- a/src/song_print.h +++ b/src/song_print.h @@ -23,10 +23,10 @@ struct songvec; -int printSongInfo(struct client *client, Song * song); +int song_print_info(struct client *client, Song * song); int songvec_print(struct client *client, const struct songvec *sv); -void printSongUrl(struct client *client, Song * song); +void song_print_url(struct client *client, Song * song); #endif |