summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-12-14 03:41:08 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-12-14 03:41:08 +0000
commitc0924280e9be867253a1b93eb7274e0eb955de5f (patch)
tree8a7d3518b463620cddb6b5c7cb3e3f55cdec2125
parent421ff2e50647695fe6b44114394120ed3b42049e (diff)
more vst debug output for solv, again
git-svn-id: svn://localhost/ardour2/trunk@1208 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/fst/fstinfofile.c7
1 files changed, 6 insertions, 1 deletions
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" );