From 9309d570f7959adf336fbde6c1557a1bbf9dba15 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 17 Feb 2018 15:40:55 +0100 Subject: [PATCH] Update test_dotu.c --- utest/test_dotu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utest/test_dotu.c b/utest/test_dotu.c index aed5147c8..30058f9ab 100644 --- a/utest/test_dotu.c +++ b/utest/test_dotu.c @@ -40,8 +40,8 @@ CTEST( zdotu,zdotu_n_1) double x1[]={1.0,1.0}; double y1[]={1.0,2.0}; #ifdef __CTEST_MSVC - _Dcomplex result1=openblas_make_complex_double(0.0,0.0); - _Dcomplex result2=openblas_make_complex_double(-1.0000,3.0000); + openblas_complex_double result1=openblas_make_complex_double(0.0,0.0); + openblas_complex_double result2=openblas_make_complex_double(-1.0000,3.0000); result1=BLASFUNC(zdotu)(&N,x1,&incX,y1,&incY); #else _Complex double result1=openblas_make_complex_double(0.0,0.0);