nothing but just remove compile warning

This commit is contained in:
sniperbat 2012-10-11 15:22:28 +08:00
parent 3cd66ee850
commit a5716b787a
1 changed files with 1 additions and 1 deletions

View File

@ -1566,7 +1566,7 @@ int XMLDocument::LoadFile( FILE* fp )
InitDocument(); InitDocument();
fseek( fp, 0, SEEK_END ); fseek( fp, 0, SEEK_END );
unsigned size = ftell( fp ); size_t size = ftell( fp );
fseek( fp, 0, SEEK_SET ); fseek( fp, 0, SEEK_SET );
if ( size == 0 ) { if ( size == 0 ) {