mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-24 19:40:21 +09:00
tools/bootconfig: Fix the wrong format specifier
[ Upstream commit f6ab7384d554ba80ff4793259d75535874b366f5 ]
Use '%u' instead of '%d' for unsigned int.
Link: https://lore.kernel.org/all/20241105011048.201629-1-luoyifan@cmss.chinamobile.com/
Fixes: 9737800111 ("tools/bootconfig: Suppress non-error messages")
Signed-off-by: Luo Yifan <luoyifan@cmss.chinamobile.com>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d49ab6857d
commit
9e0f793ee9
@@ -226,7 +226,7 @@ static int load_xbc_from_initrd(int fd, char **buf)
|
||||
/* Wrong Checksum */
|
||||
rcsum = xbc_calc_checksum(*buf, size);
|
||||
if (csum != rcsum) {
|
||||
pr_err("checksum error: %d != %d\n", csum, rcsum);
|
||||
pr_err("checksum error: %u != %u\n", csum, rcsum);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@@ -395,7 +395,7 @@ static int apply_xbc(const char *path, const char *xbc_path)
|
||||
xbc_get_info(&ret, NULL);
|
||||
printf("\tNumber of nodes: %d\n", ret);
|
||||
printf("\tSize: %u bytes\n", (unsigned int)size);
|
||||
printf("\tChecksum: %d\n", (unsigned int)csum);
|
||||
printf("\tChecksum: %u\n", (unsigned int)csum);
|
||||
|
||||
/* TODO: Check the options by schema */
|
||||
xbc_exit();
|
||||
|
||||
Reference in New Issue
Block a user