Commit 491dd423 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

*ahem* typo spotted by Antoine

(You get to love va_list type-safety)
parent 895bdba5
......@@ -568,7 +568,7 @@ static inline vout_thread_t *input_GetVout( input_thread_t *p_input )
static inline aout_instance_t *input_GetAout( input_thread_t *p_input )
{
aout_instance_t *p_aout;
return input_Control( p_input, INPUT_GET_VOUTS, &p_aout ) ? NULL : p_aout;
return input_Control( p_input, INPUT_GET_AOUT, &p_aout ) ? NULL : p_aout;
}
/* */
......
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