On Thu, 2015-03-26 at 21:54 +0100, Georg Chini wrote: > +static void remove_cork(struct userdata *u) { > +Â Â Â Â uint32_t idx, idx_input; > +Â Â Â Â pa_sink *s; > +Â Â Â Â pa_sink_input *j; > +Â Â Â Â bool corked; > +Â Â Â Â const char *role; > + > +Â Â Â Â PA_IDXSET_FOREACH(s, u->core->sinks, idx) { > + > +Â Â Â Â Â Â for (j = PA_SINK_INPUT(pa_idxset_first(s->inputs, &idx_input)); j; j = PA_SINK_INPUT(pa_idxset_next(s->inputs, &idx_input))) { I replaced this with PA_IDXSET_FOREACH. I also fixed the indentation issues in this patch, and pushed it to master. --Â Tanu