aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-19 14:10:37 +0200
committerMax Kellermann <max@duempel.org>2008-09-19 14:10:37 +0200
commitb93a0bab1cfb0479c24963f649ae0de33b885289 (patch)
treed6f942d775da9c24a61fd981521c5aeaf43a84dd /src/Makefile.am
parent4364a0bc8620e95f2fb63949f1f6f63aa233a649 (diff)
downloadmpd-b93a0bab1cfb0479c24963f649ae0de33b885289.tar.gz
mpd-b93a0bab1cfb0479c24963f649ae0de33b885289.tar.xz
mpd-b93a0bab1cfb0479c24963f649ae0de33b885289.zip
mpdclient: moved code to filelist.c
Move everything which is solely filelist related to filelist.c and filelist.h. Fix the indentation of that file, and provide the struct name "filelist". Don't clear data in mpdclient_filelist_free() before calling g_free(). Constify the "song" parameter to mpdclient_filelist_find_song().
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index fc0160e65..a16fef521 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -16,6 +16,7 @@ ncmpc_headers = \
song.h \
mpdclient.h\
playlist.h \
+ filelist.h \
options.h\
conf.h\
command.h\
@@ -46,6 +47,7 @@ ncmpc_SOURCES = \
main.c\
mpdclient.c\
playlist.c \
+ filelist.c \
options.c\
conf.c\
command.c\