From 614f97d425b0a96bcb648f24660e6c3f402fe33c Mon Sep 17 00:00:00 2001 From: Pan7 Date: Tue, 15 Aug 2017 22:04:30 +0200 Subject: [PATCH] Q3data: Fix warning format specifies type int but the argument has type long --- tools/quake3/q3data/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/quake3/q3data/video.c b/tools/quake3/q3data/video.c index 7fceb79c..436d373e 100644 --- a/tools/quake3/q3data/video.c +++ b/tools/quake3/q3data/video.c @@ -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 );