git: 04e14db22425 - stable/13 - lockstat: Use the correct type for a symbol size

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Sun, 05 Mar 2023 17:24:37 UTC
The branch stable/13 has been updated by markj:

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

commit 04e14db22425484a96b31688203f8f5b67dba287
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2023-02-25 01:11:08 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2023-03-05 17:24:17 +0000

    lockstat: Use the correct type for a symbol size
    
    No functional change intended.
    
    MFC after:      1 week
    
    (cherry picked from commit f4f5e69c84df74e8834aed173af1127b1ff50970)
---
 cddl/contrib/opensolaris/cmd/lockstat/lockstat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c b/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c
index 2fd29843b8ce..2cbad3442efb 100644
--- a/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c
+++ b/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c
@@ -632,7 +632,7 @@ predicate_destroy(char **pred)
 }
 
 static void
-filter_add(char **filt, char *what, uintptr_t base, uintptr_t size)
+filter_add(char **filt, char *what, uintptr_t base, size_t size)
 {
 	char buf[256], *c = buf, *new;
 	int len, newlen;