Commit e4e3f1eb authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Vobsub: Correct format for int64_t

parent 3a2d5d8a
...@@ -618,9 +618,8 @@ static int ParseVobSubIDX( demux_t *p_demux ) ...@@ -618,9 +618,8 @@ static int ParseVobSubIDX( demux_t *p_demux )
ms ) * 1000; ms ) * 1000;
current_tk->i_delay = current_tk->i_delay + (i_gap * i_sign); current_tk->i_delay = current_tk->i_delay + (i_gap * i_sign);
msg_Dbg( p_demux, "sign: %+d gap: %+lld global delay: %+lld", msg_Dbg( p_demux, "sign: %+d gap: %+"PRId64" global delay: %+"PRId64"",
i_sign, (long long)i_gap, i_sign, i_gap, current_tk->i_delay );
(long long)current_tk->i_delay );
} }
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment