mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
cleanup (requires update-workspaces)
lib_errors.cpp: replace with status.cpp, adapt to needs at work wutil: fix runtime warning reported via feedback box config: merge CONFIG_PARANOIA and !CONFIG_FINAL into CONFIG_ENABLE_CHECKS add openmp, pointer_typedefs.h This was SVN commit r9410.
This commit is contained in:
@@ -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), "%ld", iValue);
|
||||
int len = snprintf (tmp, sizeof (tmp), "%lld", iValue);
|
||||
Length = 0;
|
||||
Append (tmp, len);
|
||||
Type = TK_NUMBER;
|
||||
|
||||
Reference in New Issue
Block a user