diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 12:48:21 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 12:48:21 -0400 |
commit | dccb52556730ff060bcccbe764cef4b13b3d5712 (patch) | |
tree | ce71c0bb7a21f6511be8d45af19f722cf46c00ee /src/eval.c | |
parent | 8864dc5d1b9c85daa58e98c04767d2ee528f2dea (diff) | |
download | bfs-dccb52556730ff060bcccbe764cef4b13b3d5712.tar.xz |
dstring: New dchar typedef for dynamic strings
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1115,7 +1115,7 @@ static void eval_status(struct bfs_eval *state, struct bfs_bar *bar, struct time const struct BFTW *ftwbuf = state->ftwbuf; - char *rhs = dstrprintf(" (visited: %zu, depth: %2zu)", count, ftwbuf->depth); + dchar *rhs = dstrprintf(" (visited: %zu, depth: %2zu)", count, ftwbuf->depth); if (!rhs) { return; } @@ -1126,7 +1126,7 @@ static void eval_status(struct bfs_eval *state, struct bfs_bar *bar, struct time rhslen = 0; } - char *status = dstralloc(0); + dchar *status = dstralloc(0); if (!status) { goto out_rhs; } |