aboutsummaryrefslogtreecommitdiffstats
path: root/src/song_print.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-02-08 10:21:15 +0100
committerMax Kellermann <max@duempel.org>2010-02-08 10:21:15 +0100
commit8e34c59c82906529247072704794453bd7bfeab0 (patch)
tree8de0a6f00d407b8f33dcb8c70da393e398affe90 /src/song_print.h
parent766b9fd453af163c41bc77aa08fda0988b024d8e (diff)
downloadmpd-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 'src/song_print.h')
-rw-r--r--src/song_print.h5
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);