]> git.proxmox.com Git - mirror_zfs.git/commit
zdb: fix printf format in dump_zap()
authorMartin Matuška <mm@FreeBSD.org>
Fri, 11 Oct 2024 16:55:17 +0000 (18:55 +0200)
committerGitHub <noreply@github.com>
Fri, 11 Oct 2024 16:55:17 +0000 (09:55 -0700)
commit7e4be92750a324850474ab9b61f9d8321f9619e8
tree74d4fe94d4b2c310458234ca52bd073cd19ad281
parent7bf525530afdd71af14c9e740a3ed5af3876826a
zdb: fix printf format in dump_zap()

When compiling zdb.c on 32-bit platforms, a format conversion error
is reported for a printf() in dump_zap().  Change %l to macro
%" PRIu64 " to match the platform size of a 64-bit unsigned integer.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Martin Matuska <mm@FreeBSD.org>
Closes #16635
cmd/zdb/zdb.c