aboutsummaryrefslogtreecommitdiff
path: root/contrib/libucl
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2021-03-22 15:42:18 +0000
committerCy Schubert <cy@FreeBSD.org>2021-03-22 15:42:18 +0000
commit048488c0c4e47aa2aac9709b18d7da14b06f78cd (patch)
treec365dbe9a07aedd9f3757ef149a74caf2d3c91a2 /contrib/libucl
parent40f41ece765dc0b0907ca90796a1af4f4f89b2a0 (diff)
downloadsrc-048488c0c4e47aa2aac9709b18d7da14b06f78cd.tar.gz
src-048488c0c4e47aa2aac9709b18d7da14b06f78cd.zip
Fix build post a0409676120c1e558d0ade943019934e0f15118d.
Diffstat (limited to 'contrib/libucl')
-rw-r--r--contrib/libucl/src/ucl_msgpack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libucl/src/ucl_msgpack.c b/contrib/libucl/src/ucl_msgpack.c
index 3335e39cd9e7..08e690a4728a 100644
--- a/contrib/libucl/src/ucl_msgpack.c
+++ b/contrib/libucl/src/ucl_msgpack.c
@@ -1247,7 +1247,7 @@ ucl_msgpack_consume (struct ucl_parser *parser)
if (len != 0) {
ucl_create_err (&parser->err,
"invalid non-empty container at the end; len=%zu",
- (uintmax_t)len);
+ (size_t)len);
return false;
}