diff --git a/netbsd/cpu.cc b/netbsd/cpu.cc index cbee70e..756591d 100644 --- a/netbsd/cpu.cc +++ b/netbsd/cpu.cc @@ -26,12 +26,12 @@ #include "getsysctl.h" #include "cpu.h" -uint8_t get_cpu_count() +uint32_t get_cpu_count() { int cpu_count = 0; GETSYSCTL( "hw.ncpu", cpu_count ); - return static_cast( cpu_count ); + return static_cast( cpu_count ); } float cpu_percentage( unsigned int cpu_usage_delay )