git: 61827ea82189 - stable/14 - find: fix build on 32bits
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 13 Jun 2024 19:02:09 UTC
The branch stable/14 has been updated by asomers:
URL: https://cgit.FreeBSD.org/src/commit/?id=61827ea821894947844fb13e9950dce554af350c
commit 61827ea821894947844fb13e9950dce554af350c
Author: Baptiste Daroussin <bapt@FreeBSD.org>
AuthorDate: 2024-01-12 06:34:28 +0000
Commit: Alan Somers <asomers@FreeBSD.org>
CommitDate: 2024-06-13 19:01:56 +0000
find: fix build on 32bits
---
usr.bin/find/find.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c
index 57225e8fa23f..46f0e9b3c38b 100644
--- a/usr.bin/find/find.c
+++ b/usr.bin/find/find.c
@@ -217,7 +217,7 @@ find_execute(PLAN *plan, char *paths[])
if (showinfo) {
fprintf(stderr, "Scanning: %s/%s\n", entry->fts_path, entry->fts_name);
- fprintf(stderr, "Scanned: %lu\n\n", counter);
+ fprintf(stderr, "Scanned: %zu\n\n", counter);
showinfo = 0;
}
++counter;