diff options
author | Max Kellermann <max@duempel.org> | 2010-02-08 10:21:15 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-02-08 10:21:15 +0100 |
commit | 8e34c59c82906529247072704794453bd7bfeab0 (patch) | |
tree | 8de0a6f00d407b8f33dcb8c70da393e398affe90 /src/song_print.h | |
parent | 766b9fd453af163c41bc77aa08fda0988b024d8e (diff) | |
download | mpd-8e34c59c82906529247072704794453bd7bfeab0.tar.gz mpd-8e34c59c82906529247072704794453bd7bfeab0.tar.xz mpd-8e34c59c82906529247072704794453bd7bfeab0.zip |
song_print: song_print() returns void
The only "return" statement always returns 0.
Diffstat (limited to '')
-rw-r--r-- | src/song_print.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/song_print.h b/src/song_print.h index abcab2ac6..cb83f4711 100644 --- a/src/song_print.h +++ b/src/song_print.h @@ -24,10 +24,11 @@ struct client; struct song; struct songvec; -int +void song_print_info(struct client *client, struct song *song); -int songvec_print(struct client *client, const struct songvec *sv); +void +songvec_print(struct client *client, const struct songvec *sv); void song_print_uri(struct client *client, struct song *song); |