mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-29 04:12:46 +00:00
@@ -151,7 +151,7 @@ bool CPreprocessor::Token::GetValue (long &oValue) const
|
||||
void CPreprocessor::Token::SetValue (long iValue)
|
||||
{
|
||||
char tmp [21];
|
||||
int len = snprintf (tmp, sizeof (tmp), "%lld", iValue);
|
||||
int len = snprintf (tmp, sizeof (tmp), "%ld", iValue);
|
||||
Length = 0;
|
||||
Append (tmp, len);
|
||||
Type = TK_NUMBER;
|
||||
|
||||
Reference in New Issue
Block a user