From 8305fe0579b0dc8347aafae10d62185b0ea5498a Mon Sep 17 00:00:00 2001 From: Bryan Jurish Date: Wed, 4 Feb 2009 09:13:34 +0000 Subject: + fixed missing semicolon in flite.c svn path=/trunk/externals/moocow/; revision=10736 --- flite/flite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!"); -- cgit v1.2.1