]> git.sesse.net Git - vlc/commitdiff
* audio_output/audio_output.c, interface/intf_ctrl.c :
authorMichel Kaempf <maxx@videolan.org>
Wed, 2 Feb 2000 21:52:20 +0000 (21:52 +0000)
committerMichel Kaempf <maxx@videolan.org>
Wed, 2 Feb 2000 21:52:20 +0000 (21:52 +0000)
- suppression de deux warnings � la noix de cajou polym�re ;

src/audio_output/audio_output.c
src/interface/intf_ctrl.c

index 655b4c36361ead08677146bd9290e9b52b34dac5..5c0bc768c07598e29f20411d68486d1a60024235 100644 (file)
@@ -62,7 +62,7 @@ static __inline__ int NextFrame( aout_thread_t * p_aout, aout_fifo_t * p_fifo, m
 aout_thread_t *aout_CreateThread( int *pi_status )
 {
     aout_thread_t * p_aout;                               /* thread descriptor */
-    int             i_status;                                 /* thread status */
+//    int             i_status;                                 /* thread status */
    
     /* Allocate descriptor */
     p_aout = (aout_thread_t *) malloc( sizeof(aout_thread_t) );
index 1a4d70fa8a1341e72c834d86b5a3fbc6ae53f03b..b714b531cead1c73ff21d90a852758b1de25b11c 100644 (file)
@@ -303,7 +303,7 @@ fprintf( stderr, "maxx debug: blih\n" );
  ******************************************************************************/
 static int PlayAudio( int i_argc, intf_arg_t *p_argv )
 {
-    char *psz_file;                       /* name of the audio raw file (s16) */
+    char * psz_file = NULL;               /* name of the audio raw file (s16) */
     int i_fd;       /* file descriptor of the audio file that is to be loaded */
     aout_fifo_t fifo;          /* fifo stores the informations about the file */
     struct stat stat_buffer;       /* needed to find out the size of psz_file */