BUGFIX: Fix compiler warning: comparison between signed and unsigned integer expressions

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@520 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/1/head
kimmi 2009-12-24 11:40:16 +00:00
parent 7cb337a8b8
commit 497b387d45
1 changed files with 1 additions and 1 deletions

View File

@ -1040,7 +1040,7 @@ void Discreet3DSImporter::ParseMeshChunk()
// Larger 3DS files could have multiple FACE chunks here
chunkSize = stream->GetRemainingSizeToLimit();
if (chunkSize > sizeof(Discreet3DS::Chunk))
if ( chunkSize > (int) sizeof(Discreet3DS::Chunk ) )
ParseFaceChunk();
}
break;