Commit 0830f18b authored by Eric Petit's avatar Eric Petit

control/http.c: gcc < 3 compile fix

parent 0a5efa39
...@@ -958,13 +958,13 @@ void PlaylistListNode( playlist_t *p_pl, playlist_item_t *p_node, ...@@ -958,13 +958,13 @@ void PlaylistListNode( playlist_t *p_pl, playlist_item_t *p_node,
static mvar_t *mvar_PlaylistSetNew( char *name, playlist_t *p_pl ) static mvar_t *mvar_PlaylistSetNew( char *name, playlist_t *p_pl )
{ {
playlist_view_t *p_view;
mvar_t *s = mvar_New( name, "set" ); mvar_t *s = mvar_New( name, "set" );
fprintf( stderr," mvar_PlaylistSetNew: name=`%s'\n", name ); fprintf( stderr," mvar_PlaylistSetNew: name=`%s'\n", name );
vlc_mutex_lock( &p_pl->object_lock ); vlc_mutex_lock( &p_pl->object_lock );
playlist_view_t *p_view;
p_view = playlist_ViewFind( p_pl, VIEW_CATEGORY ); /* FIXME */ p_view = playlist_ViewFind( p_pl, VIEW_CATEGORY ); /* FIXME */
if( p_view != NULL ) if( p_view != NULL )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment