diff options
author | musil <tmusil@users.sourceforge.net> | 2006-12-14 17:55:27 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2006-12-14 17:55:27 +0000 |
commit | 79e14460981969a1d8037b7fd4dd423489d928f0 (patch) | |
tree | 2969fe3587b0c396d4a178a6de460b6e5180ba6c | |
parent | 8e8c0d231d319bfc75dcfe82a7c1d72e288e23fd (diff) |
new date in header
corrected array length comparsion in method bang
svn path=/trunk/externals/iem/iem_tab/; revision=6890
-rw-r--r-- | src/tab_reverse.c | 4 |
1 files 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; |