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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/fst/fstinfofile.c b/libs/fst/fstinfofile.c
index 7cc98d2233..7b0c69d015 100644
--- a/libs/fst/fstinfofile.c
+++ b/libs/fst/fstinfofile.c
@@ -227,7 +227,9 @@ FSTInfo *fst_get_info( char *dllpath ) {
FSTInfo *info;
char *fstpath;
- if( !(h = fst_load( dllpath )) ) return NULL;
+ if( !(h = fst_load( dllpath )) ) {
+ return NULL;
+ }
if( !(fst = fst_instantiate( h, simple_master_callback, NULL )) ) {
fst_unload( h );
fst_error( "instantiate failed\n" );