vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Sun Oct 10 18:44:38 2010 +0200| [9ac197baa5689d34a37147d4c4f07294db991a2c] | committer: Jean-Baptiste Kempf
MKV: fix stupid typo, sorry > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9ac197baa5689d34a37147d4c4f07294db991a2c --- modules/demux/mkv/stream_io_callback.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/demux/mkv/stream_io_callback.cpp b/modules/demux/mkv/stream_io_callback.cpp index 6dce8df..a4dbb6a 100644 --- a/modules/demux/mkv/stream_io_callback.cpp +++ b/modules/demux/mkv/stream_io_callback.cpp @@ -30,8 +30,8 @@ /***************************************************************************** * Stream managment *****************************************************************************/ -vlc_stream_io_callback::vlc_stream_io_callback( stream_t *s_, bool b_owner_ ), - s( s_), b_owner( b_owner_ ) +vlc_stream_io_callback::vlc_stream_io_callback( stream_t *s_, bool b_owner_ ) + : s( s_), b_owner( b_owner_ ) { mb_eof = false; } _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
