diff options
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ls.c b/toys/posix/ls.c index 65031587..25b77ad7 100644 --- a/toys/posix/ls.c +++ b/toys/posix/ls.c @@ -467,7 +467,7 @@ static void listfiles(int dirfd, struct dirtree *indir) } } if (flags & FLAG_Z) - printf(" %-*s", -(int)totals[7], (char *)sort[next]->extra); + printf("%-*s ", -(int)totals[7], (char *)sort[next]->extra); if (flags & (FLAG_l|FLAG_o|FLAG_n|FLAG_g)) { struct tm *tm; |