From 2e25c65129132075c6a2a9a7d75fd5b420c03e67 Mon Sep 17 00:00:00 2001 From: Albert Ribes Date: Mon, 21 Jul 2025 10:34:19 +0200 Subject: [PATCH] wolfcrypt test: Fix build on 32 bit machines Declare a 64 bit variable using W64LIT to avoid warnings on 32 bit machines --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index a47809b16..c05cb23cd 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -13171,7 +13171,7 @@ static wc_test_ret_t aes_xts_sector_test(void) 0x24, 0xe7, 0x3d, 0x6f }; - word64 s3 = 0x000000ffffffffff; + word64 s3 = W64LIT(0x000000ffffffffff); #endif #if defined(WOLFSSL_SMALL_STACK) && !defined(WOLFSSL_NO_MALLOC)