The branch main has been updated by markj:

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

commit f4f5e69c84df74e8834aed173af1127b1ff50970
Author:     Mark Johnston <ma...@freebsd.org>
AuthorDate: 2023-02-25 01:11:08 +0000
Commit:     Mark Johnston <ma...@freebsd.org>
CommitDate: 2023-02-25 01:11:08 +0000

    lockstat: Use the correct type for a symbol size
    
    No functional change intended.
    
    MFC after:      1 week
---
 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;

Reply via email to