From 353bf701d397565b22355c970c0cf76601c20fc8 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 2 Sep 2021 14:58:41 -0400 Subject: eval: Remove an extra space from -ls output --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') 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; } -- cgit v1.2.3