From aa7795c019c10b3f52cf18fc3553604e1b5ec7cb Mon Sep 17 00:00:00 2001 From: allanjude Date: Wed, 22 Jul 2015 19:58:21 +0000 Subject: 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 --- bin/ls/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') 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); } -- cgit v1.1