From 739a8290a8b05645a2d055aed8e5eb76ba2e24e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 28 Aug 2015 17:55:26 +0000 Subject: one-true indentation svn path=/trunk/externals/zexy/; revision=17537 --- src/tavg~.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/tavg~.c') diff --git a/src/tavg~.c b/src/tavg~.c index 0d0231a..6d5ef51 100644 --- a/src/tavg~.c +++ b/src/tavg~.c @@ -1,4 +1,4 @@ -/* +/* * tavg~: arithmetic mean between last and current 'bang' (triggered average on signals) * * (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem) @@ -7,12 +7,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ @@ -21,8 +21,7 @@ static t_class *tavg_class; -typedef struct _tavg -{ +typedef struct _tavg { t_object x_obj; t_sample n_inv; t_sample buf; @@ -47,7 +46,9 @@ static t_int *tavg_perform(t_int *w) int n = (int)(w[3]); t_sample buf = x->buf; - while (n--) buf += *in++; + while (n--) { + buf += *in++; + } x->buf = buf; x->blocks++; return (w+4); -- cgit v1.2.1