aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toys/posix/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ls.c b/toys/posix/ls.c
index 6429ce60..15796ff1 100644
--- a/toys/posix/ls.c
+++ b/toys/posix/ls.c
@@ -438,7 +438,7 @@ static void listfiles(int dirfd, struct dirtree *indir)
usr, upad, grp, grpad);
if (flags & FLAG_Z)
- printf("%*s ", -(int)totals[7], (char *)sort[next]->extra);
+ printf(" %*s ", -(int)totals[7], (char *)sort[next]->extra);
if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode))
printf("% *d,% 4d", totals[5]-4, major(st->st_rdev),minor(st->st_rdev));