From: ddennedy Date: Sun, 24 Feb 2008 09:13:45 +0000 (+0000) Subject: mlt_repository.c: throw warning on failure to load module X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=685823af444d3cad9a394e6733550776ecf56383;p=melted mlt_repository.c: throw warning on failure to load module git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1075 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/framework/mlt_repository.c b/src/framework/mlt_repository.c index b271a85..1ac8dff 100644 --- a/src/framework/mlt_repository.c +++ b/src/framework/mlt_repository.c @@ -88,6 +88,10 @@ mlt_repository mlt_repository_init( const char *directory ) dlclose( object ); } } + else if ( strstr( object_name, "libmlt" ) ) + { + fprintf( stderr, "%s:%s: failed to dlopen %s\n", __FILE__, __FUNCTION__, object_name ); + } } return this;