From c0924280e9be867253a1b93eb7274e0eb955de5f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 14 Dec 2006 03:41:08 +0000 Subject: [PATCH] more vst debug output for solv, again git-svn-id: svn://localhost/ardour2/trunk@1208 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/fst/fstinfofile.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/fst/fstinfofile.c b/libs/fst/fstinfofile.c index 699cb178de..0a7fc3d6bb 100644 --- a/libs/fst/fstinfofile.c +++ b/libs/fst/fstinfofile.c @@ -230,7 +230,12 @@ FSTInfo *fst_get_info( char *dllpath ) { FSTInfo *info; char *fstpath; - if( !(h = fst_load( dllpath )) ) return NULL; + fprintf (stderr, "no valid FST file, direct load plugin\n"); + + if( !(h = fst_load( dllpath )) ) { + fprintf (stderr, "fst_load failed\n"); + return NULL; + } if( !(fst = fst_instantiate( h, simple_master_callback, NULL )) ) { fst_unload( h ); fst_error( "instantiate failed\n" );