diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-03-06 18:20:11 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-03-06 18:20:11 -0500 |
commit | 61adc84620e90c3380c785d559137fac487a301c (patch) | |
tree | bd6819bc88ef14d306f79cfbdcdf51d6a5086ffe | |
parent | 10d6f6c849ce2c6bc6275793c17a4a93c73b80de (diff) | |
download | bfs-61adc84620e90c3380c785d559137fac487a301c.tar.xz |
eval: Tweak status bar punctuation
-rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1120,7 +1120,7 @@ static void eval_status(struct bfs_eval *state, struct bfs_bar *bar, struct time const struct BFTW *ftwbuf = state->ftwbuf; dchar *status = NULL; - dchar *rhs = dstrprintf(" (visited: %'zu, depth: %2zu)", count, ftwbuf->depth); + dchar *rhs = dstrprintf(" (visited: %'zu; depth: %2zu)", count, ftwbuf->depth); if (!rhs) { return; } |