diff options
author | konablend <[email protected]> | 2009-06-25 07:00:41 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-06-25 07:00:41 +0000 |
commit | 9b4832cb8c05f72dfe0a2d7dbdc22d4468434de6 (patch) | |
tree | 0350dca266d6003cc4530dd3ace46d324b3d4629 /libhb/decmetadata.c | |
parent | eef252057e08aeffc4a8b43d6eba838012debc28 (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/decmetadata.c')
-rw-r--r-- | libhb/decmetadata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decmetadata.c b/libhb/decmetadata.c index df0c5b3ef..e377f8c25 100644 --- a/libhb/decmetadata.c +++ b/libhb/decmetadata.c @@ -84,7 +84,7 @@ static void decmp4metadata( hb_title_t *title ) chapter->minutes = ( ( chapter->duration / 90000 ) % 3600 ) / 60; chapter->seconds = ( chapter->duration / 90000 ) % 60; strcpy( chapter->title, chapter_list[i-1].title ); - hb_deep_log( 2, "Added chapter %i, name='%s', dur=%lld, (%02i:%02i:%02i)", chapter->index, chapter->title, + hb_deep_log( 2, "Added chapter %i, name='%s', dur=%"PRId64", (%02i:%02i:%02i)", chapter->index, chapter->title, chapter->duration, chapter->hours, chapter->minutes, chapter->seconds); hb_list_add( title->list_chapter, chapter ); |