From: Alexander Gendin Date: Sat, 3 Feb 2024 02:56:19 +0000 (+0000) Subject: test: cmd: mbr: Fix Smatch static checker warning X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=8904e933a3aa01a2559d38e081703ed6fd92807d;p=u-boot.git test: cmd: mbr: Fix Smatch static checker warning This patch fixes Smatch static checker warning: test/cmd/mbr.c:243 mbr_test_run() warn: sizeof(NUMBER)? Reported-by: Dan Carpenter Signed-off-by: Alexander Gendin Reviewed-by: Heinrich Schuchardt --- diff --git a/test/cmd/mbr.c b/test/cmd/mbr.c index 46b78e706c..235b363290 100644 --- a/test/cmd/mbr.c +++ b/test/cmd/mbr.c @@ -240,7 +240,11 @@ static int mbr_test_run(struct unit_test_state *uts) ut_assert(ofnode_valid(node)); ut_assertok(lists_bind_fdt(gd->dm_root, node, &dev, NULL, false)); - mbr_parts_max = sizeof('\0') + 2 + + /* + * 1 byte for null character + * 2 reserved bytes + */ + mbr_parts_max = 1 + 2 + strlen(mbr_parts_header) + strlen(mbr_parts_p1) + strlen(mbr_parts_p2) +