1
0
Fork 0

Attempt at fixing an unresolved symbol in gcc / clang.

This commit is contained in:
madmaxoft 2014-05-29 21:41:44 +02:00
parent be10f07db0
commit 8c4dd5dcfd
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ void cChunkData::CopyBlockTypes(BLOCKTYPE * a_Dest, size_t a_Idx, size_t a_Lengt
}
if (ToSkip < SectionBlockCount)
{
size_t ToCopy = std::min(SectionBlockCount, a_Length);
size_t ToCopy = std::min(+SectionBlockCount, a_Length);
a_Length -= ToCopy;
if (m_Sections[i] != NULL)
{