Q3data: Fix warning format specifies type int but the argument has type long

This commit is contained in:
Pan7 2017-08-15 22:04:30 +02:00
parent 1439c10043
commit 614f97d425
1 changed files with 1 additions and 1 deletions

View File

@ -1107,7 +1107,7 @@ void Cmd_Video( void ){
printf( "\n" );
printf( "Total size: %i\n", ftell( output ) );
printf( "Total size: %ld\n", ftell( output ) );
printf( "Average error: %f\n", sumError / ( frame - startframe ) );
printf( "Max error: %f\n", maxError );