From: Clément Stenac Date: Sat, 25 Mar 2006 12:15:49 +0000 (+0000) Subject: Remove debug (Refs:#438) X-Git-Tag: 0.9.0-test0~11774 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=75dcdd178a6258451a7152bf47434895935b3abe;p=vlc Remove debug (Refs:#438) --- diff --git a/mozilla/vlcpeer.cpp b/mozilla/vlcpeer.cpp index 3c06a03955..699f626608 100644 --- a/mozilla/vlcpeer.cpp +++ b/mozilla/vlcpeer.cpp @@ -167,9 +167,7 @@ NS_IMETHODIMP VlcPeer::Get_int_variable( const char *psz_var, PRInt64 *result ) vlc_value_t val; if( p_plugin ) { - fprintf(stderr, "Choppage de %s\n", psz_var ); VLC_VariableGet( p_plugin->i_vlc, psz_var, &val ); - fprintf(stderr, "Valeur %i\n", val.i_int ); *result = (PRInt64)val.i_int; } return NS_OK; @@ -191,7 +189,6 @@ NS_IMETHODIMP VlcPeer::Get_str_variable( const char *psz_var, char **result ) vlc_value_t val; if( p_plugin ) { - fprintf(stderr, "Choppage de %s\n", psz_var ); VLC_VariableGet( p_plugin->i_vlc, psz_var, &val ); if( val.psz_string ) {