[vlc-commits] stream.c: Add debug message when selecting readdir stream method

Julien 'Lta' BALLET git at videolan.org
Fri Jul 4 18:43:15 CEST 2014


vlc | branch: master | Julien 'Lta' BALLET <contact at lta.io> | 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 <jb at videolan.org>

> 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;
     }



More information about the vlc-commits mailing list