diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-23 11:11:35 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-23 11:11:35 -0400 |
commit | 25b4e40cd32175f39b94ffaa034bd46b428d8545 (patch) | |
tree | 8d580896f0c3bed403d379ef56ceaf361adf6c57 /src/color.c | |
parent | f48f8346ff96dc2183716104d5181b894451acc8 (diff) | |
download | bfs-25b4e40cd32175f39b94ffaa034bd46b428d8545.tar.xz |
expr: New for_expr macro
Diffstat (limited to 'src/color.c')
-rw-r--r-- | src/color.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color.c b/src/color.c index 137d795..81f28bb 100644 --- a/src/color.c +++ b/src/color.c @@ -1171,7 +1171,7 @@ static int print_expr(CFILE *cfile, const struct bfs_expr *expr, bool verbose, i } int count = 0; - for (struct bfs_expr *child = bfs_expr_children(expr); child; child = child->next) { + for_expr (child, expr) { if (dstrcat(&cfile->buffer, " ") != 0) { return -1; } |