playlist: removed stopOnError flag from playPlaylist()

All callers pass false.  Don't bother to collect that parameter.
This commit is contained in:
Max Kellermann
2009-01-23 00:10:50 +01:00
parent 9da7ae02f0
commit e5c323fd57
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -388,7 +388,7 @@ handle_play(struct client *client, int argc, char *argv[])
if (argc == 2 && !check_int(client, &song, argv[1], need_positive))
return COMMAND_RETURN_ERROR;
result = playPlaylist(song, 0);
result = playPlaylist(song);
return print_playlist_result(client, result);
}
@@ -401,7 +401,7 @@ handle_playid(struct client *client, int argc, char *argv[])
if (argc == 2 && !check_int(client, &id, argv[1], need_positive))
return COMMAND_RETURN_ERROR;
result = playPlaylistById(id, 0);
result = playPlaylistById(id);
return print_playlist_result(client, result);
}