From 685823af444d3cad9a394e6733550776ecf56383 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Sun, 24 Feb 2008 09:13:45 +0000 Subject: [PATCH] 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 --- src/framework/mlt_repository.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) 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; -- 1.7.4.4