[vlc-devel] commit: Vobsub: Correct format for int64_t (Jean-Baptiste Kempf )
git version control
git at videolan.org
Thu Aug 20 09:45:35 CEST 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Aug 20 09:43:21 2009 +0200| [e4e3f1ebfe6a8801d694707e087c809a53327dbc] | committer: Jean-Baptiste Kempf
Vobsub: Correct format for int64_t
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e4e3f1ebfe6a8801d694707e087c809a53327dbc
---
modules/demux/vobsub.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/modules/demux/vobsub.c b/modules/demux/vobsub.c
index 6b9088d..97a7282 100644
--- a/modules/demux/vobsub.c
+++ b/modules/demux/vobsub.c
@@ -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
{
More information about the vlc-devel
mailing list