aboutsummaryrefslogtreecommitdiff
path: root/src/arraycopy.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-01-16 02:01:21 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 13:53:22 +0200
commitc91ca99adfb0a87a9a5073bf2ef7ec44aecb9158 (patch)
tree373d6c658a7bea877bc20542cfcb573066cbfb24 /src/arraycopy.c
parent5a7e7f61c9e5416c71ed4bfef74b09f0a5a556ef (diff)
fixed a few warnings
svn path=/trunk/externals/maxlib/; revision=4411
Diffstat (limited to 'src/arraycopy.c')
-rw-r--r--src/arraycopy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arraycopy.c b/src/arraycopy.c
index c7f34cf..ea5f61b 100644
--- a/src/arraycopy.c
+++ b/src/arraycopy.c
@@ -82,7 +82,8 @@ static void arraycopy_docopy(t_arraycopy *x)
{
t_garray *b; /* make local copy of array */
t_float *tab; /* the content itselfe */
- t_int items, i;
+ int items;
+ t_int i;
t_garray *A;
int npoints;
t_float *vec;