diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-04-15 12:11:06 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-04-15 12:11:06 +0000 |
| commit | b35c8f287dfb5f263beb4c6c165a3012d8f96aef (patch) | |
| tree | 72ccf81aeafac65218ff420645438c1cfc019f27 /sbin/sysctl | |
| parent | da57e52add14df57a0e1ad57dbe759b0995eea33 (diff) | |
Notes
Diffstat (limited to 'sbin/sysctl')
| -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 194be815432bc..161adbc41f4e0 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); } |
