From 79e14460981969a1d8037b7fd4dd423489d928f0 Mon Sep 17 00:00:00 2001 From: musil Date: Thu, 14 Dec 2006 17:55:27 +0000 Subject: new date in header corrected array length comparsion in method bang svn path=/trunk/externals/iem/iem_tab/; revision=6890 --- src/tab_reverse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tab_reverse.c b/src/tab_reverse.c index 8c73a93..e9f9d8b 100644 --- a/src/tab_reverse.c +++ b/src/tab_reverse.c @@ -1,7 +1,7 @@ /* For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. -iem_tab written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2005 */ +iem_tab written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2006 */ #include "m_pd.h" @@ -47,7 +47,7 @@ static void tab_reverse_bang(t_tab_reverse *x) if(ok_src && ok_dst) { - if(x->x_size_src1 > x->x_size_dst) + if(x->x_size_src1 < x->x_size_dst) n = x->x_size_src1; else n = x->x_size_dst; -- cgit v1.2.1