]> git.sesse.net Git - vlc/commitdiff
Fix bogus warnings
authorClément Stenac <zorglub@videolan.org>
Sun, 15 Oct 2006 13:20:47 +0000 (13:20 +0000)
committerClément Stenac <zorglub@videolan.org>
Sun, 15 Oct 2006 13:20:47 +0000 (13:20 +0000)
modules/meta_engine/folder.c
modules/meta_engine/musicbrainz.c
src/playlist/tree.c

index b8927a8b4616454451cff0b4f3365ceb7e8ffa86..a11bcdd9c50872a74187fd0304a599e5b9416590 100644 (file)
@@ -64,7 +64,6 @@ static int FindMeta( vlc_object_t *p_this )
     playlist_t *p_playlist = (playlist_t *)p_this;
     input_item_t *p_item = (input_item_t *)(p_playlist->p_private);
     vlc_bool_t b_have_art = VLC_FALSE;
-    uint32_t i_meta;
 
     int i = 0;
     struct stat a;
index d0db9d85e258240272e2b242ae85e1cce8723e96..0222a5ffd5993c7c98dedd4d40c0a0cbfaff7ee9 100644 (file)
@@ -74,7 +74,6 @@ static int GetData( vlc_object_t *p_obj, input_item_t *p_item,
     char psz_data[256];
     char i_album_count, i;
     char *ppsz_args[4];
-    uint32_t i_meta;
 
     char *psz_title;
     char *psz_artist;
index 39ef9e1e71aac1cb0209d083e060f62fb09bd257..103b82e675e1b6840d2a657b074c9d5e91182bfb 100644 (file)
@@ -550,7 +550,6 @@ playlist_item_t *GetNextItem( playlist_t *p_playlist,
             }
         }
     }
-    msg_Err( p_playlist, "I should not be here" );
     return NULL;
 }
 
@@ -684,7 +683,6 @@ playlist_item_t *GetPrevItem( playlist_t *p_playlist,
             }
         }
     }
-    msg_Err( p_playlist, "I should not be here" );
     return NULL;
 }