diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-02-04 09:13:34 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-02-04 09:13:34 +0000 |
commit | 8305fe0579b0dc8347aafae10d62185b0ea5498a (patch) | |
tree | e7d8b46c46c7b61917e456cdfb09b2aae378bffe /flite | |
parent | 990703695f5a226019fba6e4f9ac86e002f0f5c9 (diff) |
+ fixed missing semicolon in flite.c
svn path=/trunk/externals/moocow/; revision=10736
Diffstat (limited to 'flite')
-rw-r--r-- | flite/flite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flite/flite.c b/flite/flite.c index 7ad6a73..bcd8a39 100644 --- a/flite/flite.c +++ b/flite/flite.c @@ -84,7 +84,7 @@ void flite_synth(t_flite *x) { // -- sanity checks if (!(a = (t_garray *)pd_findbyclass(x->x_arrayname, garray_class))) { pd_error(x,"flite: no such array '%s'", x->x_arrayname->s_name); - return + return; } if (!x->textbuf) { pd_error(x,"flite: attempt to synthesize empty text-buffer!"); |