%lld not %u ... ::sigh::

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@8249 4a71c877-e1ca-e34f-864e-861f7616d084
master
Buginator 2009-10-10 01:31:10 +00:00 committed by Git SVN Gateway
parent 6e7f02f01e
commit e1a168c349
1 changed files with 2 additions and 2 deletions

View File

@ -1115,7 +1115,7 @@ static BOOL dataScriptLoad(const char* fileName, void **ppData)
pBuffer = malloc(fileSize * sizeof(char));
if (pBuffer == NULL)
{
debug(LOG_ERROR, "Fatal memory allocation, couldn't allocate %u buffer", fileSize);
debug(LOG_ERROR, "Fatal memory allocation, couldn't allocate %lld buffer", fileSize);
abort();
}
@ -1183,7 +1183,7 @@ static BOOL dataScriptLoadVals(const char* fileName, void **ppData)
pBuffer = malloc(fileSize * sizeof(char));
if (pBuffer == NULL)
{
debug(LOG_ERROR, "Fatal memory allocation, couldn't allocate %u buffer", fileSize);
debug(LOG_ERROR, "Fatal memory allocation, couldn't allocate %lld buffer", fileSize);
abort();
}