From 6f5b395009d782d14dcaf5bd2156422c1ba2a117 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Mon, 22 Jul 2013 17:02:06 -0700 Subject: [PATCH] Fix xianyi/OpenBLAS#256 --- interface/trtri.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/trtri.c b/interface/trtri.c index 75416529a..0564bc183 100644 --- a/interface/trtri.c +++ b/interface/trtri.c @@ -138,7 +138,7 @@ int NAME(char *UPLO, char *DIAG, blasint *N, FLOAT *a, blasint *ldA, blasint *In // call dtrtri from lapack for a walk around. if(uplo==0){ dtrtri_lapack_(UPLO, DIAG, N, a, ldA, Info); - return; + return 0; } #endif