git: 7e9f5bcdc4fc - stable/13 - find: fix build on 32bits
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 13 Jun 2024 19:01:01 UTC
The branch stable/13 has been updated by asomers: URL: https://cgit.FreeBSD.org/src/commit/?id=7e9f5bcdc4fcde5ba700359f1e3fe007dcfa4398 commit 7e9f5bcdc4fcde5ba700359f1e3fe007dcfa4398 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:00:40 +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;