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
This commit is contained in:
allanjude 2015-07-22 19:58:21 +00:00
parent 06c64a0c1e
commit aa7795c019

View File

@ -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);
}