Commit 84e7b158 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* forgot the most important file of the commit :)

parent 9bfb547e
...@@ -612,8 +612,16 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability, ...@@ -612,8 +612,16 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
} }
else if( p_first == NULL ) else if( p_first == NULL )
{ {
msg_Err( p_this, "no %s module matched \"%s\"", if( !strcmp( psz_capability, "access_demux" ) )
{
msg_Warn( p_this, "no %s module matched \"%s\"",
psz_capability, (psz_name && *psz_name) ? psz_name : "any" ); psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
}
else
{
msg_Err( p_this, "no %s module matched \"%s\"",
psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
}
} }
else if( psz_name != NULL && *psz_name ) else if( psz_name != NULL && *psz_name )
{ {
......
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