diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-09-02 14:58:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-09-02 14:59:32 -0400 |
commit | 353bf701d397565b22355c970c0cf76601c20fc8 (patch) | |
tree | 9e049cd286dfd68e315f46ef8107a198c58b7cce | |
parent | 6b083345307aa1fdbc48eaf247c80b4c4982b2ee (diff) | |
download | bfs-353bf701d397565b22355c970c0cf76601c20fc8.tar.xz |
eval: Remove an extra space from -ls output
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -650,7 +650,7 @@ bool eval_fls(const struct expr *expr, struct eval_state *state) { xstrmode(statbuf->mode, mode); char acl = bfs_check_acl(ftwbuf) > 0 ? '+' : ' '; uintmax_t nlink = statbuf->nlink; - if (fprintf(file, "%9ju %6ju %s%c %2ju ", ino, blocks, mode, acl, nlink) < 0) { + if (fprintf(file, "%9ju %6ju %s%c %2ju", ino, blocks, mode, acl, nlink) < 0) { goto error; } |