[vlc-devel] commit: Remove dummy debug ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat Sep 27 18:26:03 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Sep 27 19:29:30 2008 +0300| [696f3a439149f8116d57eac4ecd90527cc29abbe] | committer: Rémi Denis-Courmont 

Remove dummy debug

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=696f3a439149f8116d57eac4ecd90527cc29abbe
---

 modules/access/directory.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/modules/access/directory.c b/modules/access/directory.c
index ed16b8f..1de68fa 100644
--- a/modules/access/directory.c
+++ b/modules/access/directory.c
@@ -244,7 +244,6 @@ static block_t *Block (access_t *p_access)
     access_sys_t *p_sys = p_access->p_sys;
     directory_t *current = p_sys->current;
 
-    msg_Dbg (p_access, "in Block");
     if (p_access->info.b_eof)
         return NULL;
 
@@ -285,7 +284,6 @@ static block_t *Block (access_t *p_access)
     }
 
     char *entry = utf8_readdir (current->handle);
-    msg_Dbg (p_access, "got file %s", entry);
     if (entry == NULL)
     {   /* End of directory, go back to parent */
         closedir (current->handle);
@@ -302,7 +300,6 @@ static block_t *Block (access_t *p_access)
             if (!block)
                 goto fatal;
             memcpy (block->p_buffer, footer, sizeof (footer) - 1);
-            msg_Dbg (p_access, "done");
             p_access->info.b_eof = true;
             return block;
         }
@@ -372,7 +369,6 @@ static block_t *Block (access_t *p_access)
                         "  <track><location>file://%s/%s</location></track>\n",
                         current->uri, encoded);
     free (encoded);
-    msg_Dbg (p_access, "%s", entry);
     if (len == -1)
         goto fatal;
 




More information about the vlc-devel mailing list