aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/playlist.c')
-rw-r--r--src/playlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist.c b/src/playlist.c
index 81c3ee687..60ad75627 100644
--- a/src/playlist.c
+++ b/src/playlist.c
@@ -87,7 +87,7 @@ static void incrPlaylistVersion(void)
void playlistVersionChange(void)
{
- int i = 0;
+ int i;
for (i = 0; i < playlist.length; i++) {
playlist.songMod[i] = playlist.version;
@@ -664,7 +664,7 @@ int addSongToPlaylist(int fd, Song * song, int *added_id)
int swapSongsInPlaylist(int fd, int song1, int song2)
{
int queuedSong = -1;
- int currentSong = -1;
+ int currentSong;
if (song1 < 0 || song1 >= playlist.length) {
commandError(fd, ACK_ERROR_NO_EXIST,