mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Link a bool to its block rather than the block's head.
This makes the flow make a little more sense.
This commit is contained in:
parent
977c48d728
commit
0d01930056
1 changed files with 1 additions and 2 deletions
|
@ -894,8 +894,7 @@ _print_expr (expr_t *e, int level, int id)
|
|||
if (e->e.bool.e->type == ex_block && e->e.bool.e->e.block.head) {
|
||||
expr_t *se;
|
||||
|
||||
printf ("%*se_%p -> e_%p;\n", indent, "",
|
||||
e, e->e.bool.e->e.block.head);
|
||||
printf ("%*se_%p -> e_%p;\n", indent, "", e, e->e.bool.e);
|
||||
se = (expr_t *) e->e.bool.e->e.block.tail;
|
||||
if (se && se->type == ex_label && e->next)
|
||||
printf ("%*se_%p -> e_%p "
|
||||
|
|
Loading…
Reference in a new issue