summaryrefslogtreecommitdiff
path: root/libs/fst/fstinfofile.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fst/fstinfofile.c')
-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;