Date: Mon, 20 Apr 2026 16:50:21 +0000 From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 019a4878831c - main - zfs: Fix the build on 32-bit platforms Message-ID: <69e6594d.3cfd2.ca6b4b3@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=019a4878831cee46a8df79bd4b7c1ea93db0a7a8 commit 019a4878831cee46a8df79bd4b7c1ea93db0a7a8 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2026-04-20 16:17:08 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2026-04-20 16:50:05 +0000 zfs: Fix the build on 32-bit platforms Fixes: d8fbbd371ca1 ("zfs: merge openzfs/zfs@1644e2ffd") Reported by: Jenkins --- sys/contrib/openzfs/cmd/zpool/zpool_vdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/contrib/openzfs/cmd/zpool/zpool_vdev.c b/sys/contrib/openzfs/cmd/zpool/zpool_vdev.c index 583c9646ad7c..8a747573cd1e 100644 --- a/sys/contrib/openzfs/cmd/zpool/zpool_vdev.c +++ b/sys/contrib/openzfs/cmd/zpool/zpool_vdev.c @@ -1446,7 +1446,7 @@ draid_config_by_type(nvlist_t *nv, const char *type, uint64_t width, if (fgrps > 1 && nfdomain && nfdomain != children) { fprintf(stderr, gettext("invalid number of failure domains " - "%d, must be %lu\n"), nfdomain, children); + "%d, must be %llu\n"), nfdomain, (u_longlong_t)children); return (EINVAL); }home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69e6594d.3cfd2.ca6b4b3>
