From: Max Kellermann Date: Thu, 11 Jun 2009 12:24:54 +0000 (+0200) Subject: mpdclient: include utils.h X-Git-Tag: release-0.15~62 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f2ae59d62f7ce347068aa6c62ca938fc28cd2657;p=ncmpc.git mpdclient: include utils.h Don't import string_list_free() manually. --- diff --git a/src/mpdclient.c b/src/mpdclient.c index 2896338..aeaf44b 100644 --- a/src/mpdclient.c +++ b/src/mpdclient.c @@ -22,6 +22,7 @@ #include "config.h" #include "options.h" #include "strfsong.h" +#include "utils.h" #include #include @@ -38,10 +39,6 @@ #define MPD_ERROR(c) (c==NULL || c->connection==NULL || c->connection->error) -/* from utils.c */ -extern GList *string_list_free(GList *string_list); - - /* filelist sorting functions */ static gint compare_filelistentry(gconstpointer filelist_entry1,