--- ray/src/common/caldefn.c 1990/07/19 11:15:31 1.5 +++ ray/src/common/caldefn.c 1990/07/19 13:09:22 1.6 @@ -154,12 +154,13 @@ char *name; #ifdef OUTCHAN -chanout() /* set output channels */ +chanout(cs) /* set output channels */ +int (*cs)(); { register EPNODE *ep; for (ep = outchan; ep != NULL; ep = ep->sibling) - chanset(ep->v.kid->v.chan, evalue(ep->v.kid->sibling)); + (*cs)(ep->v.kid->v.chan, evalue(ep->v.kid->sibling)); } #endif