Commit 87ad2f85 authored by Max Kellermann's avatar Max Kellermann

command: fix return value of handle_currentsong()

Thanks to clang for complaining.
parent a8f891ef
......@@ -430,7 +430,7 @@ handle_currentsong(struct client *client,
G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
playlist_print_current(client, &g_playlist);
return PLAYLIST_RESULT_SUCCESS;
return COMMAND_RETURN_OK;
}
static enum command_return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment