comparison src/audacious/main.c @ 4644:23e712435e3e

Remove an unused variable.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 13 Jun 2008 16:47:20 +0300
parents ca64cd387021
children e4e7999a21bc
comparison
equal deleted inserted replaced
4643:4eb5a651bbc4 4644:23e712435e3e
561 561
562 static gboolean 562 static gboolean
563 load_extra_playlist(const gchar * path, const gchar * basename, 563 load_extra_playlist(const gchar * path, const gchar * basename,
564 gpointer def) 564 gpointer def)
565 { 565 {
566 Playlist *playlist, *deflist = (Playlist *)def; 566 Playlist *playlist = playlist_new();
567 567
568 playlist = playlist_new();
569 if (!playlist) { 568 if (!playlist) {
570 g_warning("Couldn't create new playlist for %s / %s\n", path, basename); 569 g_warning("Couldn't create new playlist for %s / %s\n", path, basename);
571 return FALSE; 570 return FALSE;
572 } 571 }
573 572