Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/84907?usp=email )
Change subject: tests/data/lib/lzma-test/data: Fix cast of type 'nullptr_t' to 'uintptr_t' error ......................................................................
tests/data/lib/lzma-test/data: Fix cast of type 'nullptr_t' to 'uintptr_t' error
Fix remaining cast error of a 'nullptr_t' to 'uintptr_t' when using C23
Change-Id: Ifd6c8537d546aa957929396e7e3e9e82d79b5df0 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M tests/data/lib/lzma-test/data.3.bin 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/84907/1
diff --git a/tests/data/lib/lzma-test/data.3.bin b/tests/data/lib/lzma-test/data.3.bin index 6da1ac9..0a8d3f5 100644 --- a/tests/data/lib/lzma-test/data.3.bin +++ b/tests/data/lib/lzma-test/data.3.bin @@ -234,7 +234,7 @@ const struct imd_entry *lg_entry;
/* Fail when the limit for lg was not set. */ - imd.lg.limit = (uintptr_t) NULL; + imd.lg.limit = 0; assert_int_equal(-1, imd_recover(&imd));
/* Set the limit for lg. */