mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-22 15:47:37 +00:00
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
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91199
@ -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…
Reference in New Issue
Block a user