]> git.sesse.net Git - vlc/commitdiff
Remove debug
authorRémi Denis-Courmont <rem@videolan.org>
Sun, 25 Mar 2007 19:21:38 +0000 (19:21 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sun, 25 Mar 2007 19:21:38 +0000 (19:21 +0000)
modules/control/http/util.c

index 847d186eb5bde86b555758a2b41baf930bf8f24d..69d85549c9ea381c3e2a340cc3ea4e677c00f19c 100644 (file)
@@ -773,7 +773,6 @@ char *E_(ExtractURIValue)( char *restrict psz_uri,
     char *psz_value = FindURIValue( psz_uri, psz_name, &len );
     char *psz_next;
 
-    fprintf( stderr, "%s within %s:\n", psz_name, psz_uri );
     if( psz_value == NULL )
     {
         if( bufsize > 0 )
@@ -791,7 +790,6 @@ char *E_(ExtractURIValue)( char *restrict psz_uri,
     if( bufsize > 0 )
         psz_buf[len] = '\0';
 
-    fprintf( stderr, "%s next %s\n", psz_buf, psz_next );
     return psz_next;
 }