From 094239ed4e5e7ec3e69b32d850eca784fa8eb8d2 Mon Sep 17 00:00:00 2001 From: torset Date: Thu, 22 Jan 2009 14:59:05 +0000 Subject: update --- src/matrixOperations/cat/ccata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/matrixOperations/cat/ccata.c') diff --git a/src/matrixOperations/cat/ccata.c b/src/matrixOperations/cat/ccata.c index d47fb613..cd2b4c92 100644 --- a/src/matrixOperations/cat/ccata.c +++ b/src/matrixOperations/cat/ccata.c @@ -28,7 +28,7 @@ void crowcata(floatComplex *in1, int lines1, int columns1, floatComplex *in2, i { out[i*(lines1 + lines2) + j] = in1[i*lines1 + j]; } - for (j = 0 ; j < lines1 ; ++j) + for (j = 0 ; j < lines2 ; ++j) { out[i*(lines1 + lines2) + lines1 + j] = in2[i*lines2 + j]; } -- cgit