lib/libtcc1.c: Replace "long" with "unsigned int" in union float_long.

master
Edmund Grimley Evans 2015-11-04 23:22:00 +00:00
parent 24308fd292
commit f7dd3d49cc
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ union double_long {
union float_long {
float f;
long l;
unsigned int l;
};
/* XXX: we don't support several builtin supports for now */