diff options
author | phk <phk@FreeBSD.org> | 2002-04-15 12:11:06 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-04-15 12:11:06 +0000 |
commit | ed0cd9a251a69f708a0d247b1408ef641e9c2e3b (patch) | |
tree | 72ccf81aeafac65218ff420645438c1cfc019f27 /sbin | |
parent | acd63b074d82fbbd0eb251ba3d68aa6e714fe85d (diff) | |
download | FreeBSD-src-ed0cd9a251a69f708a0d247b1408ef641e9c2e3b.zip FreeBSD-src-ed0cd9a251a69f708a0d247b1408ef641e9c2e3b.tar.gz |
Take the "tickadj" element out of struct clockinfo. Our adjtime(2)
implementation is being changed and the very concept of tickadj will
no longer be meaningful.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/sysctl/sysctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c index 194be81..161adbc 100644 --- a/sbin/sysctl/sysctl.c +++ b/sbin/sysctl/sysctl.c @@ -277,8 +277,8 @@ S_clockinfo(int l2, void *p) struct clockinfo *ci = (struct clockinfo*)p; if (l2 != sizeof(*ci)) err(1, "S_clockinfo %d != %d", l2, sizeof(*ci)); - printf("{ hz = %d, tick = %d, tickadj = %d, profhz = %d, stathz = %d }", - ci->hz, ci->tick, ci->tickadj, ci->profhz, ci->stathz); + printf("{ hz = %d, tick = %d, profhz = %d, stathz = %d }", + ci->hz, ci->tick, ci->profhz, ci->stathz); return (0); } |