Commit 7737c981 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Auhal: fix signed comparison issue

parent 03e68116
...@@ -601,7 +601,7 @@ static int OpenSPDIF( audio_output_t * p_aout ) ...@@ -601,7 +601,7 @@ static int OpenSPDIF( audio_output_t * p_aout )
UInt32 i_param_size = 0, b_mix = 0; UInt32 i_param_size = 0, b_mix = 0;
Boolean b_writeable = false; Boolean b_writeable = false;
AudioStreamID *p_streams = NULL; AudioStreamID *p_streams = NULL;
int i_streams = 0; unsigned i_streams = 0;
/* Start doing the SPDIF setup proces */ /* Start doing the SPDIF setup proces */
p_sys->b_digital = true; p_sys->b_digital = true;
......
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