summaryrefslogtreecommitdiffstats
path: root/bin/ls
diff options
context:
space:
mode:
authorallanjude <allanjude@FreeBSD.org>2015-07-22 19:58:21 +0000
committerallanjude <allanjude@FreeBSD.org>2015-07-22 19:58:21 +0000
commitaa7795c019c10b3f52cf18fc3553604e1b5ec7cb (patch)
tree655dab24049dea556a9747356e1505d9b0bc5846 /bin/ls
parent06c64a0c1eac5e7b4fe84c49cb7650b2b10ea363 (diff)
downloadFreeBSD-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/ls')
-rw-r--r--bin/ls/print.c2
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);
}
OpenPOWER on IntegriCloud