diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-27 02:40:21 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-27 02:40:21 +0000 |
commit | ccc7488615f0079032d8b017f57e6bf6a994cf84 (patch) | |
tree | 4f4f709ad3b66e3f94fabd3567eb85df9e935393 /ls.c | |
parent | de7965ca7ee65f21042739f1be5a337da4138343 (diff) |
Fixed ls formatting for 8 char user names.
-Erik
Diffstat (limited to 'ls.c')
-rw-r--r-- | ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -198,7 +198,7 @@ static void list_single(const char *name, struct stat *info, const char *fullnam if (*scratch) { fputs(scratch, stdout); if ( strlen( scratch) <= 8 ) - wr(" ", 8-strlen( scratch)); + wr(" ", 9-strlen( scratch)); } else { writenum((long) info->st_uid,(short)8); |