From: Milan P. Stanić Date: Mon, 12 Jan 2026 18:12:37 +0000 (+0100) Subject: tools: fix format string in tools/imx8image.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfebedc6120556be4889b284bc27362a8a237a00;p=thirdparty%2Fu-boot.git tools: fix format string in tools/imx8image.c on 32bit systems with musl libc compiler emits warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'size_t' {aka 'unsigned int'} [-Wformat=] to fix this use format length modifier 'z' (size_t) instead of 'l' Signed-off-by: Milan P. Stanić Reviewed-by: Tom Rini --- diff --git a/tools/imx8image.c b/tools/imx8image.c index 3cea536b8e8..84f46bcaf37 100644 --- a/tools/imx8image.c +++ b/tools/imx8image.c @@ -815,7 +815,7 @@ static int get_container_image_start_pos(image_t *image_stack, uint32_t align, u p = calloc(1, size); if (!p) { - fprintf(stderr, "Fail to alloc %lx memory\n", size); + fprintf(stderr, "Fail to alloc %zx memory\n", size); exit(EXIT_FAILURE); }