* generate scanf()
*/
-static void
-scan(Excc_t* cc, Exnode_t* expr)
-{
+static void scan(Excc_t *cc, Exnode_t *exnode) {
Print_t* x;
- if ((x = expr->data.print.args))
+ if ((x = exnode->data.print.args))
{
agxbprint(cc->ccdisc->text, "sfscanf(sfstdin, \"%s", fmtesq(x->format, quote));
while ((x = x->next))
agxbput(cc->ccdisc->text, fmtesq(x->format, quote));
agxbputc(cc->ccdisc->text, '"');
- for (x = expr->data.print.args; x; x = x->next)
+ for (x = exnode->data.print.args; x; x = x->next)
{
if (x->arg)
{