The branch stable/13 has been updated by kib:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=e6278ae2bd7c59d8057e1dfe8a801b1b46b392d4

commit e6278ae2bd7c59d8057e1dfe8a801b1b46b392d4
Author:     Konstantin Belousov <[email protected]>
AuthorDate: 2023-11-13 01:30:53 +0000
Commit:     Konstantin Belousov <[email protected]>
CommitDate: 2023-11-20 01:40:34 +0000

    reboot(8): adapt for vmmeter v_swappgsin expansion to 64bit
    
    PR:     275048
    
    (cherry picked from commit 194cc45a81f70aa280546b7a5e658028df0303e7)
---
 sbin/reboot/reboot.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sbin/reboot/reboot.c b/sbin/reboot/reboot.c
index 9b9d956bea82..a087be7bbf23 100644
--- a/sbin/reboot/reboot.c
+++ b/sbin/reboot/reboot.c
@@ -58,7 +58,7 @@ static char sccsid[] = "@(#)reboot.c  8.1 (Berkeley) 6/5/93";
 #include <utmpx.h>
 
 static void usage(void);
-static u_int get_pageins(void);
+static uint64_t get_pageins(void);
 
 static int dohalt;
 
@@ -68,7 +68,7 @@ main(int argc, char *argv[])
        struct utmpx utx;
        const struct passwd *pw;
        int ch, howto, i, fd, lflag, nflag, qflag, sverrno, Nflag;
-       u_int pageins;
+       uint64_t pageins;
        const char *user, *kernel = NULL;
 
        if (strstr(getprogname(), "halt") != NULL) {
@@ -266,10 +266,10 @@ usage(void)
        exit(1);
 }
 
-static u_int
+static uint64_t
 get_pageins(void)
 {
-       u_int pageins;
+       uint64_t pageins;
        size_t len;
 
        len = sizeof(pageins);
@@ -278,5 +278,5 @@ get_pageins(void)
                warnx("v_swappgsin");
                return (0);
        }
-       return pageins;
+       return (pageins);
 }

Reply via email to