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:
parent
44bec8227d
commit
e9be968e95
@ -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. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user