Fix a typo (?) in previous commit told ttyprintf() to print the integer

part of the user-time as a 64bit quantity.  This resulted in weird
output from SIGINFO.
This commit is contained in:
Poul-Henning Kamp 2002-02-24 19:56:41 +00:00
parent 44bec8227d
commit e9be968e95

View File

@ -2438,7 +2438,7 @@ ttyinfo(tp)
stmp);
/* Print user time. */
ttyprintf(tp, "%lld.%02ldu ",
ttyprintf(tp, "%ld.%02ldu ",
utime.tv_sec, utime.tv_usec / 10000);
/* Print system time. */