aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-23 09:54:32 +0200
committerMax Kellermann <max@duempel.org>2008-10-23 09:54:32 +0200
commit93598e28f48a6a2da332287a3b8c0966a99e66d9 (patch)
treec8c5a6b691d7c1b99f0555332ba344b485367f73 /src/command.c
parent39f0c41fbf94f2ac078478867ff95a92a62480fb (diff)
downloadmpd-93598e28f48a6a2da332287a3b8c0966a99e66d9.tar.gz
mpd-93598e28f48a6a2da332287a3b8c0966a99e66d9.tar.xz
mpd-93598e28f48a6a2da332287a3b8c0966a99e66d9.zip
stored_playlist: renamed and moved spl_delete() to stored_playlist.c
The function deletePlaylist() shouldn't be in playlist.c.
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c
index 2f567e25b..dc5c3f96a 100644
--- a/src/command.c
+++ b/src/command.c
@@ -626,7 +626,7 @@ handle_rm(struct client *client, mpd_unused int argc, char *argv[])
{
enum playlist_result result;
- result = deletePlaylist(argv[1]);
+ result = spl_delete(argv[1]);
return print_playlist_result(client, result);
}