Fix test90 for 32 bits targets
Should have used 'long long' instead of 'long' for 32 bits targets.
This commit is contained in:
parent
80909254c4
commit
ec81877fa7
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@ typedef struct {
|
||||||
unsigned int a;
|
unsigned int a;
|
||||||
unsigned int : 32;
|
unsigned int : 32;
|
||||||
unsigned int b;
|
unsigned int b;
|
||||||
unsigned long : 64;
|
unsigned long long : 64;
|
||||||
unsigned int c;
|
unsigned int c;
|
||||||
} tst_bf;
|
} tst_bf;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue