]> git.sesse.net Git - vlc/commitdiff
Cosmetics.
authorLaurent Aimar <fenrir@videolan.org>
Sun, 31 Jan 2010 00:04:48 +0000 (01:04 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 31 Jan 2010 00:04:48 +0000 (01:04 +0100)
src/input/input.c

index f901a9e0c9eef073a2f2e7e40583748bb502c78b..a8c96b5c6517f98a15a2d82bd152a36bddc9a4c6 100644 (file)
@@ -1187,7 +1187,7 @@ static void InitPrograms( input_thread_t * p_input )
 static int Init( input_thread_t * p_input )
 {
     vlc_meta_t *p_meta;
-    int i, ret;
+    int i;
 
     for( i = 0; i < p_input->p->p_item->i_options; i++ )
     {
@@ -1205,8 +1205,7 @@ static int Init( input_thread_t * p_input )
 
     InitStatistics( p_input );
 #ifdef ENABLE_SOUT
-    ret = InitSout( p_input );
-    if( ret != VLC_SUCCESS )
+    if( InitSout( p_input ) )
         goto error_stats;
 #endif