From: Paul Brossier Date: Sat, 1 Feb 2014 21:50:58 +0000 (-0300) Subject: src/fmat.c: fix redeclaration when not using memcpy hacks X-Git-Tag: 0.4.1~57 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=bc6c1a7c0aa7b43f53578a78d8794d9b94693993;p=aubio.git src/fmat.c: fix redeclaration when not using memcpy hacks --- diff --git a/src/fmat.c b/src/fmat.c index 78330201..a51c18a9 100644 --- a/src/fmat.c +++ b/src/fmat.c @@ -129,7 +129,7 @@ void fmat_weight(fmat_t *s, fmat_t *weight) { void fmat_copy(fmat_t *s, fmat_t *t) { uint_t i; #if !HAVE_MEMCPY_HACKS - uint_t i,j; + uint_t j; #endif if (s->height != t->height) { AUBIO_ERR("trying to copy %d rows to %d rows \n",