- fixed warning.

This commit is contained in:
Christoph Oelckers 2017-02-01 19:07:41 +01:00
parent b77a0eb7cf
commit 04988a331b

View file

@ -554,7 +554,7 @@ bool FScanner::GetToken ()
String[StringLen - 2] == 'u' || String[StringLen - 2] == 'U')
{
TokenType = TK_UIntConst;
Number = strtoull(String, &stopper, 0);
Number = (int)strtoull(String, &stopper, 0);
Float = (unsigned)Number;
}
else