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/filelist.h | |
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/filelist.h')
-rw-r--r-- | src/filelist.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/filelist.h b/src/filelist.h index 81ff5a37c..3b33eb449 100644 --- a/src/filelist.h +++ b/src/filelist.h @@ -44,10 +44,9 @@ typedef struct filelist { } mpdclient_filelist_t; void -mpdclient_filelist_free(struct filelist *filelist); +filelist_free(struct filelist *filelist); struct filelist_entry * -mpdclient_filelist_find_song(struct filelist *flist, - const struct mpd_song *song); +filelist_find_song(struct filelist *flist, const struct mpd_song *song); #endif |