Code

Removed C++ style declarations from enqueue_and_play()
authorKalle Wallin <kaw@linux.se>
Tue, 4 Jan 2005 21:47:43 +0000 (21:47 +0000)
committerKalle Wallin <kaw@linux.se>
Tue, 4 Jan 2005 21:47:43 +0000 (21:47 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2874 09075e82-0dd4-0310-85a5-a0d7c8717e4f

src/screen_file.c

index aff58a526e01a0f0ffe66db216d763d053dd9232..1e13cc4c789dee36bf0b4a1fcb48dc250768153b 100644 (file)
@@ -331,6 +331,7 @@ handle_delete(screen_t *screen, mpdclient_t *c)
 static int
 enqueue_and_play(screen_t *screen, mpdclient_t *c, filelist_entry_t *entry)
 {
+  int index;
   mpd_InfoEntity *entity = entry->entity;
   mpd_Song *song = entity->info.song;
   
@@ -349,7 +350,7 @@ enqueue_and_play(screen_t *screen, mpdclient_t *c, filelist_entry_t *entry)
        return -1;
     }
   
-  int index = playlist_get_index_from_file(c, song->file);
+  index = playlist_get_index_from_file(c, song->file);
   mpdclient_cmd_play(c, index);
   return 0;
 }