summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-12-14 03:34:54 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-12-14 03:34:54 +0000
commit421ff2e50647695fe6b44114394120ed3b42049e (patch)
tree54164342a26656196aca15a3241ac5933b555e73 /libs
parenta358d351a1ae0a9218e42c5430d2db68bbe27811 (diff)
more vst debug output for solv
git-svn-id: svn://localhost/ardour2/trunk@1207 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/fst/fstinfofile.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/fst/fstinfofile.c b/libs/fst/fstinfofile.c
index 7cc98d2233..699cb178de 100644
--- a/libs/fst/fstinfofile.c
+++ b/libs/fst/fstinfofile.c
@@ -44,6 +44,7 @@ static FSTInfo *load_fst_info_file( char *filename ) {
fp = fopen( filename, "r" );
if( fp == NULL ) {
+ fprintf (stderr, "cannot open FST info file %s\n", filename);
free( info );
return NULL;
}
@@ -216,6 +217,8 @@ FSTInfo *fst_get_info( char *dllpath ) {
FSTInfo *info;
char *fstpath = fst_dllpath_to_infopath( dllpath );
+ fprintf (stderr, "have FST info file for %s, loading\n", dllpath);
+
info = load_fst_info_file( fstpath );
free( fstpath );
return info;