This is an automated email from the ASF dual-hosted git repository. archer pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
commit bce24201c7c7aa902de7f746d45b8631851c955c Author: Xiang Xiao <xiaoxi...@xiaomi.com> AuthorDate: Sun Nov 20 06:25:49 2022 +0800 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 <xiaoxi...@xiaomi.com> --- 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;