mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Merge pull request #559 from Pan7/fixq3data7
Q3data: Fix warning format %d expects argument of type int
This commit is contained in:
commit
366fa91888
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||
|
|
Loading…
Reference in a new issue