Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Jun 2024 19:01:01 GMT
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 7e9f5bcdc4fc - stable/13 - find: fix build on 32bits
Message-ID:  <202406131901.45DJ11qT018211@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202406131901.45DJ11qT018211>