13
0

more vst debug output for solv, again

git-svn-id: svn://localhost/ardour2/trunk@1208 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-12-14 03:41:08 +00:00
parent 421ff2e506
commit c0924280e9

View File

@ -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" );