diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-07-31 22:43:50 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-07-31 22:43:50 +0000 |
commit | bb9579ffc3fd9d188bf6aaf592e78305c12c2944 (patch) | |
tree | 46648c7efd9338afbc617678b109e61b5749b35f | |
parent | fa1c5aac51c5e4f880f72ffc66d409d61706ad8a (diff) | |
download | busybox-w32-bb9579ffc3fd9d188bf6aaf592e78305c12c2944.tar.gz busybox-w32-bb9579ffc3fd9d188bf6aaf592e78305c12c2944.tar.bz2 busybox-w32-bb9579ffc3fd9d188bf6aaf592e78305c12c2944.zip |
Make formatting match GNU ls (we were including a spare ' ')
-Erik
-rw-r--r-- | coreutils/ls.c | 2 | ||||
-rw-r--r-- | ls.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 794a1d028..8d0282dfe 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -637,7 +637,7 @@ static int list_single(struct dnode *dn) | |||
637 | my_getpwuid(scratch, dn->dstat.st_uid); | 637 | my_getpwuid(scratch, dn->dstat.st_uid); |
638 | printf("%-8.8s ", scratch); | 638 | printf("%-8.8s ", scratch); |
639 | my_getgrgid(scratch, dn->dstat.st_gid); | 639 | my_getgrgid(scratch, dn->dstat.st_gid); |
640 | printf("%-8.8s ", scratch); | 640 | printf("%-8.8s", scratch); |
641 | column += 17; | 641 | column += 17; |
642 | break; | 642 | break; |
643 | #endif | 643 | #endif |
@@ -637,7 +637,7 @@ static int list_single(struct dnode *dn) | |||
637 | my_getpwuid(scratch, dn->dstat.st_uid); | 637 | my_getpwuid(scratch, dn->dstat.st_uid); |
638 | printf("%-8.8s ", scratch); | 638 | printf("%-8.8s ", scratch); |
639 | my_getgrgid(scratch, dn->dstat.st_gid); | 639 | my_getgrgid(scratch, dn->dstat.st_gid); |
640 | printf("%-8.8s ", scratch); | 640 | printf("%-8.8s", scratch); |
641 | column += 17; | 641 | column += 17; |
642 | break; | 642 | break; |
643 | #endif | 643 | #endif |