From 9b4832cb8c05f72dfe0a2d7dbdc22d4468434de6 Mon Sep 17 00:00:00 2001 From: konablend Date: Thu, 25 Jun 2009 07:00:41 +0000 Subject: - cleanup gcc format warnings showing up on linux 64-bit git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2619 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/muxcommon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libhb/muxcommon.c') diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c index 4c2c68009..1f39df11d 100644 --- a/libhb/muxcommon.c +++ b/libhb/muxcommon.c @@ -340,21 +340,21 @@ finished: if( !stat( job->file, &sb ) ) { - hb_deep_log( 2, "mux: file size, %lld bytes", (uint64_t) sb.st_size ); + hb_deep_log( 2, "mux: file size, %"PRId64" bytes", (uint64_t) sb.st_size ); bytes_total = 0; frames_total = 0; for( i = 0; i < mux->ntracks; ++i ) { track = mux->track[i]; - hb_log( "mux: track %d, %lld frames, %lld bytes, %.2f kbps, fifo %d", + hb_log( "mux: track %d, %"PRId64" frames, %"PRId64" bytes, %.2f kbps, fifo %d", i, track->frames, track->bytes, 90000.0 * track->bytes / mux->pts / 125, track->mf.flen ); if( !i && ( job->vquality < 0.0 || job->vquality > 1.0 ) ) { /* Video */ - hb_deep_log( 2, "mux: video bitrate error, %+lld bytes", + hb_deep_log( 2, "mux: video bitrate error, %+"PRId64" bytes", (int64_t)(track->bytes - mux->pts * job->vbitrate * 125 / 90000) ); } bytes_total += track->bytes; -- cgit v1.2.3