From bc6c1a7c0aa7b43f53578a78d8794d9b94693993 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 1 Feb 2014 18:50:58 -0300 Subject: [PATCH] src/fmat.c: fix redeclaration when not using memcpy hacks --- src/fmat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", -- 2.11.0