vlc | branch: master | Julien 'Lta' BALLET <[email protected]> | Wed Jun 25 09:49:54 2014 +0000| [29e0d176ed59f4d9b9c68d1e110037f979f35819] | committer: Jean-Baptiste Kempf
stream.c: Add debug message when selecting readdir stream method This is to be consistent with the rest of the file Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=29e0d176ed59f4d9b9c68d1e110037f979f35819 --- src/input/stream.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/input/stream.c b/src/input/stream.c index 1532bf4..0179cba 100644 --- a/src/input/stream.c +++ b/src/input/stream.c @@ -435,6 +435,8 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list ) } else { + msg_Dbg( s, "Using readdir method for AStream*" ); + assert( p_sys->method == STREAM_METHOD_READDIR ); s->pf_readdir = AStreamReadDir; } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
