git: 504cb544e2c3 - main - Fix parameter to sysctlnametomib();

From: Kirk McKusick <mckusick_at_FreeBSD.org>
Date: Fri, 04 Feb 2022 22:01:38 UTC
The branch main has been updated by mckusick:

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

commit 504cb544e2c3a715153c326289a533f5fdf5a327
Author:     Kirk McKusick <mckusick@FreeBSD.org>
AuthorDate: 2022-02-04 22:00:38 +0000
Commit:     Kirk McKusick <mckusick@FreeBSD.org>
CommitDate: 2022-02-04 22:00:38 +0000

    Fix parameter to sysctlnametomib();
---
 sbin/fsck_ffs/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sbin/fsck_ffs/main.c b/sbin/fsck_ffs/main.c
index e776add4a115..1c14ffcff3fc 100644
--- a/sbin/fsck_ffs/main.c
+++ b/sbin/fsck_ffs/main.c
@@ -590,7 +590,7 @@ setup_bkgrdchk(struct statfs *mntp, int sbreadfailed, char **filesys)
 	struct iovec *iov;
 	char errmsg[255];
 	int iovlen;
-	long size;
+	unsigned int size;
 
 	/* Get the mount point information of the file system */
 	if (mntp == NULL) {