5 Jun
2012
5 Jun
'12
6:46 p.m.
On Mon, Jun 04, 2012 at 04:39:57PM -0600, Stephen Warren wrote:
list_for_each_entry(p, &w->sinks, list_source) { if (p->connected && !p->connected(w, p->sink)) continue;
Should that last call to p->connected() be p->connected(p->source, w), since the function's parameters are (source, sink)?
Probably, yes.