Commit 96dd9941 authored by Steve Lhomme's avatar Steve Lhomme

* mkv.cpp: should fix the compilation error with gcc

parent ab429b30
......@@ -953,7 +953,7 @@ public:
std::vector<chapter_codec_cmds_c*> codecs;
static bool CompareTimecode( const chapter_item_c * & itemA, const chapter_item_c * & itemB )
static bool CompareTimecode( const chapter_item_c * itemA, const chapter_item_c * itemB )
{
return ( itemA->i_user_start_time < itemB->i_user_start_time || (itemA->i_user_start_time == itemB->i_user_start_time && itemA->i_user_end_time < itemB->i_user_end_time) );
}
......
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