Add missing 's' suffix on alternate rendition of time.

This commit is contained in:
Poul-Henning Kamp 2006-01-31 08:09:37 +00:00
parent 8c6a035ead
commit f0107b2c5d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=155085

View file

@ -99,7 +99,7 @@ __printf_render_time(struct __printf_io *io, const struct printf_info *pi, const
t %= MINUTE;
}
if (t != 0)
p += sprintf(p, "%jd", t);
p += sprintf(p, "%jds", t);
} else {
p += sprintf(p, "%jd", (intmax_t)t);
}