From bce24201c7c7aa902de7f746d45b8631851c955c Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Sun, 20 Nov 2022 06:25:49 +0800 Subject: [PATCH] Fix ft80x_coprocessor.c:3911:14: error: format specifies type 'unsigned long' but the argument has type 'uint32_t' (aka 'unsigned int') Signed-off-by: Xiang Xiao --- examples/ft80x/ft80x_coprocessor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/ft80x/ft80x_coprocessor.c b/examples/ft80x/ft80x_coprocessor.c index 1e56f0a88..0060f6670 100644 --- a/examples/ft80x/ft80x_coprocessor.c +++ b/examples/ft80x/ft80x_coprocessor.c @@ -3907,7 +3907,8 @@ int ft80x_coproc_calibrate(int fd, FAR struct ft80x_dlbuffer_s *buffer) return ret; } - ft80x_info("Transform A-F: {%08lx, %08lx, %08lx, %08lx, %08lx, %08lx}\n", + ft80x_info("Transform A-F: {%08" PRIx32 ", %08" PRIx32 ", %08" + PRIx32 ", %08" PRIx32 ", %08" PRIx32 ", %08" PRIx32 "}\n", matrix[0], matrix[1], matrix[2], matrix[3], matrix[4], matrix[5]); return OK;