lib/libtcc1.c: Replace "long" with "unsigned int" in union float_long.
This commit is contained in:
parent
24308fd292
commit
f7dd3d49cc
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ union double_long {
|
||||||
|
|
||||||
union float_long {
|
union float_long {
|
||||||
float f;
|
float f;
|
||||||
long l;
|
unsigned int l;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* XXX: we don't support several builtin supports for now */
|
/* XXX: we don't support several builtin supports for now */
|
||||||
|
|
Loading…
Reference in a new issue