summaryrefslogtreecommitdiff
path: root/interface/copy.c
diff options
context:
space:
mode:
Diffstat (limited to 'interface/copy.c')
-rw-r--r--interface/copy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/interface/copy.c b/interface/copy.c
index 6965682ec..3fb2182a9 100644
--- a/interface/copy.c
+++ b/interface/copy.c
@@ -45,7 +45,7 @@
#ifndef CBLAS
void NAME(blasint *N, FLOAT *x, blasint *INCX, FLOAT *y, blasint *INCY){
-
+
BLASLONG n = *N;
BLASLONG incx = *INCX;
BLASLONG incy = *INCY;
@@ -70,11 +70,11 @@ void CNAME(blasint n, FLOAT *x, blasint incx, FLOAT *y, blasint incy){
if (incy < 0) y -= (n - 1) * incy * COMPSIZE;
COPY_K(n, x, incx, y, incy);
-
+
FUNCTION_PROFILE_END(COMPSIZE, COMPSIZE * n, 0);
IDEBUG_END;
return;
-
+
}