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 <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-11-20 06:25:49 +08:00 committed by archer
parent d706510064
commit bce24201c7

View File

@ -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;