Commit 198220ee authored by Antoine Cellerier's avatar Antoine Cellerier

* fix signedness gcc warnings (and remove trailing spaces)

parent 03e8df65
...@@ -199,8 +199,8 @@ static void Play( aout_instance_t *p_aout ) ...@@ -199,8 +199,8 @@ static void Play( aout_instance_t *p_aout )
if ( p_buffer != NULL ) if ( p_buffer != NULL )
{ {
int pos; unsigned int pos;
char *data = p_buffer->p_buffer; unsigned char *data = p_buffer->p_buffer;
for( pos = 0; pos + ESD_BUF_SIZE <= p_buffer->i_nb_bytes; for( pos = 0; pos + ESD_BUF_SIZE <= p_buffer->i_nb_bytes;
pos += ESD_BUF_SIZE ) pos += ESD_BUF_SIZE )
......
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