diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.c | 2 |
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); } |