top(1): make error message happy
We don't use a "size" variable, so just don't report it. Reported by: bapt
This commit is contained in:
parent
e06398dd48
commit
bafaf11c30
@ -379,7 +379,7 @@ machine_init(struct statics *statics)
|
||||
GETSYSCTL("kern.smp.maxcpus", maxcpu);
|
||||
times = calloc(maxcpu * CPUSTATES, sizeof(long));
|
||||
if (times == NULL)
|
||||
err(1, "calloc %zu bytes", size);
|
||||
err(1, "calloc for kern.smp.maxcpus", size);
|
||||
size = sizeof(long) * maxcpu * CPUSTATES;
|
||||
if (sysctlbyname("kern.cp_times", times, &size, NULL, 0) == -1)
|
||||
err(1, "sysctlbyname kern.cp_times");
|
||||
|
Loading…
Reference in New Issue
Block a user