Commit 2bbd7dd2 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Same mistake here: Pass real VLC_OBJECT's to msg_*

parent b69210a5
......@@ -178,7 +178,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
break;
default:
msg_Err( p_filter, "cannot interleave %i channels",
msg_Err( p_aout, "cannot interleave %i channels",
p_pcm->channels );
}
}
......@@ -210,7 +210,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
break;
default:
msg_Err( p_filter, "cannot interleave %i channels",
msg_Err( p_aout, "cannot interleave %i channels",
p_pcm->channels );
}
}
......
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