Code

wreadln: fix #ifdef for WIN32
[ncmpc.git] / src / playlist.c
index 8ec007be47d27b2ff61e0dc735aae805eba1e767..548bcccf4e4209f5d0c1d95b2ee13b9b16f51399 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2010 The Music Player Daemon Project
+ * (c) 2004-2017 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
  *
  * This program is free software; you can redistribute it and/or modify
@@ -31,11 +31,9 @@ playlist_init(struct mpdclient_playlist *playlist)
 void
 playlist_clear(struct mpdclient_playlist *playlist)
 {
-       guint i;
-
        playlist->version = 0;
 
-       for (i = 0; i < playlist->list->len; ++i) {
+       for (unsigned i = 0; i < playlist->list->len; ++i) {
                struct mpd_song *song = playlist_get(playlist, i);
 
                mpd_song_free(song);
@@ -69,14 +67,12 @@ void
 playlist_move(struct mpdclient_playlist *playlist,
              unsigned dest, unsigned src)
 {
-       struct mpd_song *song;
-
        assert(playlist != NULL);
        assert(src < playlist_length(playlist));
        assert(dest < playlist_length(playlist));
        assert(src != dest);
 
-       song = playlist_get(playlist, src);
+       struct mpd_song *song = playlist_get(playlist, src);
 
        if (src < dest) {
                memmove(&playlist->list->pdata[src],