]> git.baikalelectronics.ru Git - uboot.git/commit
cmd: wrong printf() code in do_test_stackprot_fail()
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 4 Feb 2022 09:50:04 +0000 (10:50 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 11 Feb 2022 15:52:37 +0000 (10:52 -0500)
commit486a2d392eac829f918976df796ec8f2e77e2b1e
treebaeb7aad66cfe2e55c0faa3d7d6bcf862f2439f4
parentce97f5a32b04e30230850ec38f4069f655b1bc08
cmd: wrong printf() code in do_test_stackprot_fail()

strlen() returns size_t. So we should use %zu to print it.
This avoids incorrect output on 32bit systems.

Fixes: c8af457df342 ("stackprot: Make our test a bit more complex")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
cmd/stackprot_test.c