summaryrefslogtreecommitdiffstats
path: root/libhb/dvd.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/dvd.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/dvd.c')
-rw-r--r--libhb/dvd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/dvd.c b/libhb/dvd.c
index b26725da9..29ed04fd4 100644
--- a/libhb/dvd.c
+++ b/libhb/dvd.c
@@ -276,7 +276,7 @@ static hb_title_t * hb_dvdread_title_scan( hb_dvd_t * e, int t )
title->hours = title->duration / 90000 / 3600;
title->minutes = ( ( title->duration / 90000 ) % 3600 ) / 60;
title->seconds = ( title->duration / 90000 ) % 60;
- hb_log( "scan: duration is %02d:%02d:%02d (%lld ms)",
+ hb_log( "scan: duration is %02d:%02d:%02d (%"PRId64" ms)",
title->hours, title->minutes, title->seconds,
title->duration / 90 );
@@ -597,7 +597,7 @@ static hb_title_t * hb_dvdread_title_scan( hb_dvd_t * e, int t )
chapter->minutes = ( seconds % 3600 ) / 60;
chapter->seconds = seconds % 60;
- hb_log( "scan: chap %d c=%d->%d, b=%d->%d (%d), %lld ms",
+ hb_log( "scan: chap %d c=%d->%d, b=%d->%d (%d), %"PRId64" ms",
chapter->index, chapter->cell_start, chapter->cell_end,
chapter->block_start, chapter->block_end,
chapter->block_count, chapter->duration / 90 );