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:
Allan Jude 2015-07-22 19:58:21 +00:00
parent 8ef2f53c59
commit ddaf675fc8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285803

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