aboutsummaryrefslogtreecommitdiffstats
path: root/src/mpdclient.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-19 16:22:44 +0200
committerMax Kellermann <max@duempel.org>2008-09-19 16:22:44 +0200
commite3b42caa5d39d084ba511aee43fada91e367ae3e (patch)
tree5533943f014ba260fd3b27547a73363612b2b3e5 /src/mpdclient.c
parent28a463b53369e9f26d6fb0a755af588faac38e18 (diff)
downloadmpd-e3b42caa5d39d084ba511aee43fada91e367ae3e.tar.gz
mpd-e3b42caa5d39d084ba511aee43fada91e367ae3e.tar.xz
mpd-e3b42caa5d39d084ba511aee43fada91e367ae3e.zip
filelist: drop "mpdclient" prefix
The separate filelist library does not depend on mpdclient, so the prefix is superfluous.
Diffstat (limited to 'src/mpdclient.c')
-rw-r--r--src/mpdclient.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mpdclient.c b/src/mpdclient.c
index 2f5591f60..5a630fb2b 100644
--- a/src/mpdclient.c
+++ b/src/mpdclient.c
@@ -808,7 +808,7 @@ mpdclient_filelist_search_utf8(mpdclient_t *c,
}
if (mpdclient_finish_command(c)) {
- mpdclient_filelist_free(filelist);
+ filelist_free(filelist);
return NULL;
}
@@ -841,7 +841,7 @@ mpdclient_filelist_update(mpdclient_t *c, mpdclient_filelist_t *filelist)
{
gchar *path = g_strdup(filelist->path);
- mpdclient_filelist_free(filelist);
+ filelist_free(filelist);
filelist = mpdclient_filelist_get(c, path);
g_free(path);
return filelist;