diff options
author | allanjude <allanjude@FreeBSD.org> | 2015-07-22 19:58:21 +0000 |
---|---|---|
committer | allanjude <allanjude@FreeBSD.org> | 2015-07-22 19:58:21 +0000 |
commit | aa7795c019c10b3f52cf18fc3553604e1b5ec7cb (patch) | |
tree | 655dab24049dea556a9747356e1505d9b0bc5846 /bin | |
parent | 06c64a0c1eac5e7b4fe84c49cb7650b2b10ea363 (diff) | |
download | FreeBSD-src-aa7795c019c10b3f52cf18fc3553604e1b5ec7cb.zip FreeBSD-src-aa7795c019c10b3f52cf18fc3553604e1b5ec7cb.tar.gz |
Remove an excess space accidently introduced in the output in ls(1) by r285734
Spotted by: dim
Approved by: eadler (mentor)
Sponsored by: ScaleEngine Inc.
Differential Revision: https://reviews.freebsd.org/D3152
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ls/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c index 08701c0..2fbaea5 100644 --- a/bin/ls/print.c +++ b/bin/ls/print.c @@ -456,7 +456,7 @@ printtime(const char *field, time_t ftime) snprintf(fmt, sizeof(fmt), "{d:%s/%%hs} ", field); xo_attr("value", "%ld", (long) ftime); xo_emit(fmt, longstring); - snprintf(fmt, sizeof(fmt), "{en:%s/%%ld} ", field); + snprintf(fmt, sizeof(fmt), "{en:%s/%%ld}", field); xo_emit(fmt, (long) ftime); } |