Use correct escape sequence for unsigned.

pull/2670/head
Kim Kulling 2019-09-22 09:12:37 +02:00
parent 87004aa70c
commit ef54a00fc4
1 changed files with 1 additions and 1 deletions

View File

@ -958,7 +958,7 @@ void ValidateDSProcess::Validate( const aiString* pString)
{ {
if (pString->length > MAXLEN) if (pString->length > MAXLEN)
{ {
ReportError("aiString::length is too large (%lu, maximum is %lu)", ReportError("aiString::length is too large (%u, maximum is %lu)",
pString->length,MAXLEN); pString->length,MAXLEN);
} }
const char* sz = pString->data; const char* sz = pString->data;