diff options
Diffstat (limited to 'src/arraycopy.c')
-rw-r--r-- | src/arraycopy.c | 3 |
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;
|