aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
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/main.c
parent9e7dda69f7951f678a1b31d693dba90199d17248 (diff)
downloadmpd-75348aad7cbddb9ef736a0ecca9e3ddfb8b75f8d.tar.gz
mpd-75348aad7cbddb9ef736a0ecca9e3ddfb8b75f8d.tar.xz
mpd-75348aad7cbddb9ef736a0ecca9e3ddfb8b75f8d.zip
make several functions return void
Diffstat (limited to '')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index d54fd3717..c2d752ffb 100644
--- a/src/main.c
+++ b/src/main.c
@@ -113,7 +113,7 @@ exit_and_cleanup(void)
if( mpd )
{
mpdclient_disconnect(mpd);
- mpd = mpdclient_free(mpd);
+ mpdclient_free(mpd);
}
g_free(options.host);
g_free(options.password);