mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-15 15:23:02 +00:00
cex: style: prefer res for returned value
* src/lssi.c, src/parse-simulation.c: here.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user