aboutsummaryrefslogtreecommitdiffstats
path: root/src/mpdclient.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-17 12:29:07 +0200
committerMax Kellermann <max@duempel.org>2008-09-17 12:29:07 +0200
commit75348aad7cbddb9ef736a0ecca9e3ddfb8b75f8d (patch)
tree5fb6924e98b6882e8a63771578e56c7c156101a4 /src/mpdclient.h
parent9e7dda69f7951f678a1b31d693dba90199d17248 (diff)
downloadmpd-75348aad7cbddb9ef736a0ecca9e3ddfb8b75f8d.tar.gz
mpd-75348aad7cbddb9ef736a0ecca9e3ddfb8b75f8d.tar.xz
mpd-75348aad7cbddb9ef736a0ecca9e3ddfb8b75f8d.zip
make several functions return void
Diffstat (limited to 'src/mpdclient.h')
-rw-r--r--src/mpdclient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mpdclient.h b/src/mpdclient.h
index 2ce803e86..0698cbf45 100644
--- a/src/mpdclient.h
+++ b/src/mpdclient.h
@@ -52,7 +52,7 @@ gint
mpdclient_finish_command(mpdclient_t *c);
mpdclient_t *mpdclient_new(void);
-mpdclient_t *mpdclient_free(mpdclient_t *c);
+void mpdclient_free(mpdclient_t *c);
gint mpdclient_connect(mpdclient_t *c, gchar *host, gint port,
gfloat timeout, gchar *password);
gint mpdclient_disconnect(mpdclient_t *c);
@@ -133,7 +133,7 @@ void mpdclient_playlist_callback(mpdclient_t *c, int event, gpointer data);
/*** filelist functions ***************************************************/
-mpdclient_filelist_t *mpdclient_filelist_free(mpdclient_filelist_t *filelist);
+void mpdclient_filelist_free(mpdclient_filelist_t *filelist);
mpdclient_filelist_t *mpdclient_filelist_get(mpdclient_t *c, const gchar *path);
mpdclient_filelist_t *mpdclient_filelist_search(mpdclient_t *c,
int exact_match,