Fix test90 for 32 bits targets

Should have used 'long long' instead of 'long' for 32 bits targets.
This commit is contained in:
herman ten brugge 2023-03-09 16:11:39 +01:00
parent 80909254c4
commit ec81877fa7

View File

@ -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;