git: d90e41a154ee - main - sys/vm: Use C99 fixed-width integer types.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 28 Dec 2021 17:51:17 UTC
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=d90e41a154ee97ec918068dbc48aa258c30d03e0 commit d90e41a154ee97ec918068dbc48aa258c30d03e0 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2021-12-28 17:43:21 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2021-12-28 17:43:21 +0000 sys/vm: Use C99 fixed-width integer types. No functional change. Reviewed by: imp, kib, emaste Differential Revision: https://reviews.freebsd.org/D33641 --- sys/vm/vm_meter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/vm/vm_meter.c b/sys/vm/vm_meter.c index f6ce0cfe39e3..d6d2fe72df89 100644 --- a/sys/vm/vm_meter.c +++ b/sys/vm/vm_meter.c @@ -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];