Commit d1cd2a9c authored by Michel Kaempf's avatar Michel Kaempf

* audio_output/audio_output.c, interface/intf_ctrl.c :

- suppression de deux warnings � la noix de cajou polym�re ;
parent 3a45b93f
...@@ -62,7 +62,7 @@ static __inline__ int NextFrame( aout_thread_t * p_aout, aout_fifo_t * p_fifo, m ...@@ -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 *aout_CreateThread( int *pi_status )
{ {
aout_thread_t * p_aout; /* thread descriptor */ aout_thread_t * p_aout; /* thread descriptor */
int i_status; /* thread status */ // int i_status; /* thread status */
/* Allocate descriptor */ /* Allocate descriptor */
p_aout = (aout_thread_t *) malloc( sizeof(aout_thread_t) ); p_aout = (aout_thread_t *) malloc( sizeof(aout_thread_t) );
......
...@@ -303,7 +303,7 @@ fprintf( stderr, "maxx debug: blih\n" ); ...@@ -303,7 +303,7 @@ fprintf( stderr, "maxx debug: blih\n" );
******************************************************************************/ ******************************************************************************/
static int PlayAudio( int i_argc, intf_arg_t *p_argv ) 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 */ 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 */ aout_fifo_t fifo; /* fifo stores the informations about the file */
struct stat stat_buffer; /* needed to find out the size of psz_file */ struct stat stat_buffer; /* needed to find out the size of psz_file */
......
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