diff options
author | Max Kellermann <max@duempel.org> | 2008-09-19 16:22:44 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-19 16:22:44 +0200 |
commit | e3b42caa5d39d084ba511aee43fada91e367ae3e (patch) | |
tree | 5533943f014ba260fd3b27547a73363612b2b3e5 /src/utils.c | |
parent | 28a463b53369e9f26d6fb0a755af588faac38e18 (diff) | |
download | mpd-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/utils.c')
-rw-r--r-- | src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c index 9241296f6..65eaceca2 100644 --- a/src/utils.c +++ b/src/utils.c @@ -116,6 +116,6 @@ gcmp_list_from_path(mpdclient_t *c, const gchar *path, GList *list, gint types) flist = flist->next; } - mpdclient_filelist_free(filelist); + filelist_free(filelist); return list; } |