aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-23 00:10:50 +0100
committerMax Kellermann <max@duempel.org>2009-01-23 00:10:50 +0100
commite5c323fd57808826613ad889e1cbd1c34590b633 (patch)
tree88a27cc88b6d97396668ef715e8b17a9d6f4b337 /src/playlist.h
parent9da7ae02f06cfd90897b6e0c87619f546675b2e9 (diff)
downloadmpd-e5c323fd57808826613ad889e1cbd1c34590b633.tar.gz
mpd-e5c323fd57808826613ad889e1cbd1c34590b633.tar.xz
mpd-e5c323fd57808826613ad889e1cbd1c34590b633.zip
playlist: removed stopOnError flag from playPlaylist()
All callers pass false. Don't bother to collect that parameter.
Diffstat (limited to 'src/playlist.h')
-rw-r--r--src/playlist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist.h b/src/playlist.h
index 5e0b84c5e..beb26a767 100644
--- a/src/playlist.h
+++ b/src/playlist.h
@@ -118,9 +118,9 @@ enum playlist_result playlistId(struct client *client, int song);
void stopPlaylist(void);
-enum playlist_result playPlaylist(int song, int stopOnError);
+enum playlist_result playPlaylist(int song);
-enum playlist_result playPlaylistById(int song, int stopOnError);
+enum playlist_result playPlaylistById(int song);
void nextSongInPlaylist(void);