summaryrefslogtreecommitdiffstats
path: root/libhb/fifo.c
diff options
context:
space:
mode:
authorkonablend <[email protected]>2009-06-25 07:00:41 +0000
committerkonablend <[email protected]>2009-06-25 07:00:41 +0000
commit9b4832cb8c05f72dfe0a2d7dbdc22d4468434de6 (patch)
tree0350dca266d6003cc4530dd3ace46d324b3d4629 /libhb/fifo.c
parenteef252057e08aeffc4a8b43d6eba838012debc28 (diff)
- 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
Diffstat (limited to 'libhb/fifo.c')
-rw-r--r--libhb/fifo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/fifo.c b/libhb/fifo.c
index 7337874bf..48f645970 100644
--- a/libhb/fifo.c
+++ b/libhb/fifo.c
@@ -90,8 +90,8 @@ void hb_buffer_pool_free( void )
}
}
- hb_deep_log( 2, "Allocated %lld bytes of buffers on this pass and Freed %lld bytes, "
- "%lld bytes leaked", buffers.allocated, freed, buffers.allocated - freed);
+ hb_deep_log( 2, "Allocated %"PRId64" bytes of buffers on this pass and Freed %"PRId64" bytes, "
+ "%"PRId64" bytes leaked", buffers.allocated, freed, buffers.allocated - freed);
buffers.allocated = 0;
hb_unlock(buffers.lock);
}