Commit 86c01d64 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>
parent c1e1d938
......@@ -846,7 +846,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