Q3data: Fix warning format %d expects argument of type int

This commit is contained in:
Pan7 2017-08-19 03:21:29 +02:00
parent e594c90a60
commit b2c2c8d378

View file

@ -173,7 +173,7 @@ void MD3_Dump( const char *filename ){
printf( " num tags: %d\n", header.numTags );
printf( " num surfaces: %d\n", header.numSurfaces );
printf( " num skins: %d\n", header.numSkins );
printf( " file size: %d\n", fileSize );
printf( " file size: %ld\n", fileSize );
printf( "--- TAGS ---\n" );
pTag = ( md3Tag_t * ) ( ( ( char * ) buffer ) + header.ofsTags );