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 )
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
{
......
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