]> granicus.if.org Git - handbrake/commitdiff
bd: fix printf format conversion warning
authorjstebbins <jstebbins.hb@gmail.com>
Mon, 16 Feb 2015 15:56:00 +0000 (15:56 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Mon, 16 Feb 2015 15:56:00 +0000 (15:56 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6911 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/bd.c

index b44d665ad03ae4add97557afc7a6e1743e7bcc68..20979e397328672e446241fd412c3b0cd7c5a601 100644 (file)
@@ -501,7 +501,7 @@ hb_title_t * hb_bd_title_scan( hb_bd_t * d, int tt, uint64_t min_duration )
         // If it is beyond the end of the title, drop it.
         if (ti->chapters[ii].start > ti->duration)
         {
-            hb_log("bd: chapter %d invalid start %ld, dropping", ii+1,
+            hb_log("bd: chapter %d invalid start %"PRIu64", dropping", ii+1,
                    ti->chapters[ii].start);
             continue;
         }