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:
janwas
2011-05-03 12:38:42 +00:00
parent 114ca8e4ce
commit cccd6849a7
198 changed files with 1995 additions and 1961 deletions
+1 -1
View File
@@ -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;