Removed a further nested function call.

This commit is contained in:
Cas Cremers 2018-10-14 17:39:29 +02:00
parent 2b4af1c290
commit 08adc5b518

View File

@ -124,9 +124,11 @@ compilerDone (void)
Termlist Termlist
compute_recv_variables (const Role r) compute_recv_variables (const Role r)
{ {
Termlist tl; Termlist tl = NULL;
Roledef rd;
int process_event (Roledef rd) rd = r->roledef;
while (rd != NULL)
{ {
if (rd->type == RECV) if (rd->type == RECV)
{ {
@ -134,11 +136,8 @@ compute_recv_variables (const Role r)
tl = termlistAddVariables (tl, rd->to); tl = termlistAddVariables (tl, rd->to);
tl = termlistAddVariables (tl, rd->message); tl = termlistAddVariables (tl, rd->message);
} }
return 1; rd = rd->next;
} }
tl = NULL;
roledef_iterate_events (r->roledef, process_event);
return tl; return tl;
} }