aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Jurish <mukau@users.sourceforge.net>2009-02-04 09:13:34 +0000
committerBryan Jurish <mukau@users.sourceforge.net>2009-02-04 09:13:34 +0000
commit8305fe0579b0dc8347aafae10d62185b0ea5498a (patch)
treee7d8b46c46c7b61917e456cdfb09b2aae378bffe
parent990703695f5a226019fba6e4f9ac86e002f0f5c9 (diff)
+ fixed missing semicolon in flite.c
svn path=/trunk/externals/moocow/; revision=10736
-rw-r--r--flite/flite.c2
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!");