Commit 9ef102a4 authored by Jai Menon's avatar Jai Menon Committed by Jean-Baptiste Kempf

MKV : Fix format specifier for KaxChapterUID.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
(cherry picked from commit 86c01d643f8338050e0a5c7055469a3962e2a250)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 2dfa275f
......@@ -839,7 +839,7 @@ void matroska_segment_c::ParseChapterAtom( int i_level, KaxChapterAtom *ca, chap
if( MKV_IS_ID( l, KaxChapterUID ) )
{
chapters.i_uid = uint64_t(*(KaxChapterUID*)l);
msg_Dbg( &sys.demuxer, "| | | | + ChapterUID: %"PRId64"", chapters.i_uid );
msg_Dbg( &sys.demuxer, "| | | | + ChapterUID: %"PRIu64"", chapters.i_uid );
}
else if( MKV_IS_ID( l, KaxChapterFlagHidden ) )
{
......
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