cex: style: prefer res for returned value

* src/lssi.c, src/parse-simulation.c: here.
This commit is contained in:
Akim Demaille
2020-05-17 17:47:21 +02:00
parent 866bc6a49f
commit 9a33fb9317
3 changed files with 31 additions and 31 deletions

View File

@@ -1189,10 +1189,10 @@ init_prec_nodes (void)
static symgraphlink *
symgraphlink_new (graphid id, symgraphlink *next)
{
symgraphlink *l = xmalloc (sizeof *l);
l->id = id;
l->next = next;
return l;
symgraphlink *res = xmalloc (sizeof *res);
res->id = id;
res->next = next;
return res;
}