mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
sys/vm: Use C99 fixed-width integer types.
No functional change. Reviewed by: imp, kib, emaste Differential Revision: https://reviews.freebsd.org/D33641
This commit is contained in:
parent
bcd0e31df3
commit
d90e41a154
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ sysctl_vm_loadavg(SYSCTL_HANDLER_ARGS)
|
|||
{
|
||||
|
||||
#ifdef SCTL_MASK32
|
||||
u_int32_t la[4];
|
||||
uint32_t la[4];
|
||||
|
||||
if (req->flags & SCTL_MASK32) {
|
||||
la[0] = averunnable.ldavg[0];
|
||||
|
|
|
|||
Loading…
Reference in a new issue