aboutsummaryrefslogtreecommitdiffstats
path: root/src/filelist.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/filelist.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/filelist.c')
-rw-r--r--src/filelist.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/filelist.c b/src/filelist.c
index 7b4541606..55b4cfabf 100644
--- a/src/filelist.c
+++ b/src/filelist.c
@@ -24,7 +24,7 @@
#include <assert.h>
void
-mpdclient_filelist_free(struct filelist *filelist)
+filelist_free(struct filelist *filelist)
{
GList *list = g_list_first(filelist->list);
@@ -47,8 +47,7 @@ mpdclient_filelist_free(struct filelist *filelist)
}
struct filelist_entry *
-mpdclient_filelist_find_song(struct filelist *fl,
- const struct mpd_song *song)
+filelist_find_song(struct filelist *fl, const struct mpd_song *song)
{
GList *list = g_list_first(fl->list);