Commit 75dcdd17 authored by Clément Stenac's avatar Clément Stenac

Remove debug (Refs:#438)

parent c06a32fd
...@@ -167,9 +167,7 @@ NS_IMETHODIMP VlcPeer::Get_int_variable( const char *psz_var, PRInt64 *result ) ...@@ -167,9 +167,7 @@ NS_IMETHODIMP VlcPeer::Get_int_variable( const char *psz_var, PRInt64 *result )
vlc_value_t val; vlc_value_t val;
if( p_plugin ) if( p_plugin )
{ {
fprintf(stderr, "Choppage de %s\n", psz_var );
VLC_VariableGet( p_plugin->i_vlc, psz_var, &val ); VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
fprintf(stderr, "Valeur %i\n", val.i_int );
*result = (PRInt64)val.i_int; *result = (PRInt64)val.i_int;
} }
return NS_OK; return NS_OK;
...@@ -191,7 +189,6 @@ NS_IMETHODIMP VlcPeer::Get_str_variable( const char *psz_var, char **result ) ...@@ -191,7 +189,6 @@ NS_IMETHODIMP VlcPeer::Get_str_variable( const char *psz_var, char **result )
vlc_value_t val; vlc_value_t val;
if( p_plugin ) if( p_plugin )
{ {
fprintf(stderr, "Choppage de %s\n", psz_var );
VLC_VariableGet( p_plugin->i_vlc, psz_var, &val ); VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
if( val.psz_string ) if( val.psz_string )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment