]> git.sesse.net Git - vlc/commitdiff
Vobsub: Correct format for int64_t
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 20 Aug 2009 07:43:21 +0000 (09:43 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 20 Aug 2009 07:45:29 +0000 (09:45 +0200)
modules/demux/vobsub.c

index 6b9088db924adb79bc3633dd5f2b219047952d98..97a7282093beac13906a1a7d0c14cf6d05bc17e5 100644 (file)
@@ -618,9 +618,8 @@ static int ParseVobSubIDX( demux_t *p_demux )
                             ms ) * 1000;
 
                 current_tk->i_delay = current_tk->i_delay + (i_gap * i_sign);
-                msg_Dbg( p_demux, "sign: %+d gap: %+lld global delay: %+lld",
-                         i_sign, (long long)i_gap,
-                         (long long)current_tk->i_delay  );
+                msg_Dbg( p_demux, "sign: %+d gap: %+"PRId64" global delay: %+"PRId64"",
+                         i_sign, i_gap, current_tk->i_delay );
             }
             else
             {