]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
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)
strlen() returns size_t. So we should use %zu to print it.
This avoids incorrect output on 32bit systems.

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

index 1e26193e88b054abba8f70f57047fd54537015ca..f3470288faccb1a7146ab5be3e8fe3a031c2c506 100644 (file)
@@ -17,7 +17,8 @@ static int do_test_stackprot_fail(struct cmd_tbl *cmdtp, int flag, int argc,
 
        memset(a, 0xa5, 512);
 
-       printf("We have smashed our stack as this should not exceed 128: sizeof(a) = %ld\n", strlen(a));
+       printf("We have smashed our stack as this should not exceed 128: sizeof(a) = %zd\n",
+              strlen(a));
 
        return 0;
 }