]> git.sesse.net Git - vlc/commitdiff
* mkv.cpp: should fix the compilation error with gcc
authorSteve Lhomme <robux@videolan.org>
Mon, 5 Sep 2005 08:53:54 +0000 (08:53 +0000)
committerSteve Lhomme <robux@videolan.org>
Mon, 5 Sep 2005 08:53:54 +0000 (08:53 +0000)
modules/demux/mkv.cpp

index 935729ffa1c4fb214cd55b666236f2c975158830..0870ee504112b6a7461b7325894e4d21ffbf1a3d 100644 (file)
@@ -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) );
     }