summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-09-02 14:58:41 -0400
committerTavian Barnes <tavianator@tavianator.com>2021-09-02 14:59:32 -0400
commit353bf701d397565b22355c970c0cf76601c20fc8 (patch)
tree9e049cd286dfd68e315f46ef8107a198c58b7cce
parent6b083345307aa1fdbc48eaf247c80b4c4982b2ee (diff)
downloadbfs-353bf701d397565b22355c970c0cf76601c20fc8.tar.xz
eval: Remove an extra space from -ls output
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 55cd812..fbde00e 100644
--- a/eval.c
+++ b/eval.c
@@ -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;
}