diff --git a/source/ps/Preprocessor.cpp b/source/ps/Preprocessor.cpp index 6d1e91395c..38e83ec924 100644 --- a/source/ps/Preprocessor.cpp +++ b/source/ps/Preprocessor.cpp @@ -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;