Commit dfa48be3 authored by Clément Stenac's avatar Clément Stenac

Don't print too many errors

parent 5903fe3d
...@@ -193,7 +193,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -193,7 +193,7 @@ static int Open( vlc_object_t *p_this )
if( i_ret ) if( i_ret )
{ {
msg_Err( p_access, "cannot get file info for uri %s (%s)", msg_Warn( p_access, "cannot get file info for uri %s (%s)",
psz_uri, gnome_vfs_result_to_string( i_ret ) ); psz_uri, gnome_vfs_result_to_string( i_ret ) );
gnome_vfs_file_info_unref( p_sys->p_file_info ); gnome_vfs_file_info_unref( p_sys->p_file_info );
gnome_vfs_uri_unref( p_uri); gnome_vfs_uri_unref( p_uri);
...@@ -252,7 +252,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -252,7 +252,7 @@ static int Open( vlc_object_t *p_this )
if( p_sys->b_seekable && !p_access->info.i_size ) if( p_sys->b_seekable && !p_access->info.i_size )
{ {
/* FIXME that's bad because all others access will be probed */ /* FIXME that's bad because all others access will be probed */
msg_Err( p_access, "file %s is empty, aborting", psz_name ); msg_Warn( p_access, "file %s is empty, aborting", psz_name );
gnome_vfs_file_info_unref( p_sys->p_file_info ); gnome_vfs_file_info_unref( p_sys->p_file_info );
gnome_vfs_uri_unref( p_uri); gnome_vfs_uri_unref( p_uri);
free( p_sys ); free( p_sys );
......
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