]> git.sesse.net Git - vlc/commitdiff
* input: warning fix (int ->byte_t*).
authorLaurent Aimar <fenrir@videolan.org>
Sun, 30 May 2004 17:59:20 +0000 (17:59 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 30 May 2004 17:59:20 +0000 (17:59 +0000)
src/audio_output/input.c

index 6c80db1ada7ed07c5dda2b41d3da7178d730c5e3..53d475437bde9ba0ef65093b5b6ba503feb47800 100644 (file)
@@ -309,7 +309,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
     if( p_input->b_restart )
     {
         aout_fifo_t fifo, dummy_fifo;
-        int p_first_byte_to_mix;
+        byte_t      *p_first_byte_to_mix;
 
         vlc_mutex_lock( &p_aout->mixer_lock );