]> git.sesse.net Git - vlc/commitdiff
stream.c: Add debug message when selecting readdir stream method
authorJulien 'Lta' BALLET <contact@lta.io>
Wed, 25 Jun 2014 09:49:54 +0000 (09:49 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 4 Jul 2014 16:42:46 +0000 (18:42 +0200)
This is to be consistent with the rest of the file

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
src/input/stream.c

index 1532bf4afc919d6fe8069da0d93261d17881ea6a..0179cbae3a0abfdb31760e96c9633e498abf6d02 100644 (file)
@@ -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;
     }