stored_playlist: renamed and moved spl_delete() to stored_playlist.c

The function deletePlaylist() shouldn't be in playlist.c.
This commit is contained in:
Max Kellermann
2008-10-23 09:54:32 +02:00
parent 39f0c41fbf
commit 93598e28f4
5 changed files with 19 additions and 17 deletions

View File

@@ -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);
}