diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-12-05 14:18:53 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-12-05 14:18:53 -0500 |
commit | d1e532ed839c1b2be093c88006fcf4cd3d11805d (patch) | |
tree | 192167ec829c5dbd4e73bc5abce535127c481343 /src/diag.c | |
parent | d6a1b97b0eece42bb18a171ccdfcec7082d5f2d0 (diff) | |
download | bfs-d1e532ed839c1b2be093c88006fcf4cd3d11805d.tar.xz |
expr: Rename bfs_expr_has_children() to _is_parent()
Diffstat (limited to 'src/diag.c')
-rw-r--r-- | src/diag.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ static bool highlight_expr_recursive(const struct bfs_ctx *ctx, const struct bfs } } - if (bfs_expr_has_children(expr)) { + if (bfs_expr_is_parent(expr)) { ret |= highlight_expr_recursive(ctx, expr->lhs, args); ret |= highlight_expr_recursive(ctx, expr->rhs, args); } |