From 578f4718089d12d48796f601f4d31e44ecc3614e Mon Sep 17 00:00:00 2001 From: Zhang Xianyi Date: Thu, 28 Jan 2016 22:18:38 -0600 Subject: [PATCH] Fix utest bug when INTERFACE64=1. --- utest/test_amax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utest/test_amax.c b/utest/test_amax.c index 829da24df..411598410 100644 --- a/utest/test_amax.c +++ b/utest/test_amax.c @@ -34,7 +34,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "openblas_utest.h" CTEST(amax, samax){ - int N=3, inc=1; + blasint N=3, inc=1; float te_max=0.0, tr_max=0.0; float x[]={-1.1, 2.2, -3.3};