From ec81877fa74a41f79d05320976e0c6e5063a0947 Mon Sep 17 00:00:00 2001 From: herman ten brugge Date: Thu, 9 Mar 2023 16:11:39 +0100 Subject: [PATCH] Fix test90 for 32 bits targets Should have used 'long long' instead of 'long' for 32 bits targets. --- tests/tests2/90_struct-init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests2/90_struct-init.c b/tests/tests2/90_struct-init.c index 6bff8ab4..4a71a93d 100644 --- a/tests/tests2/90_struct-init.c +++ b/tests/tests2/90_struct-init.c @@ -375,7 +375,7 @@ typedef struct { unsigned int a; unsigned int : 32; unsigned int b; - unsigned long : 64; + unsigned long long : 64; unsigned int c; } tst_bf;