Merge pull request #257 from staticfloat/develop

Add in return value for `interface/trtri.c`
This commit is contained in:
Zhang Xianyi 2013-07-22 22:35:29 -07:00
commit c5437149c0
1 changed files with 1 additions and 1 deletions

View File

@ -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. // call dtrtri from lapack for a walk around.
if(uplo==0){ if(uplo==0){
dtrtri_lapack_(UPLO, DIAG, N, a, ldA, Info); dtrtri_lapack_(UPLO, DIAG, N, a, ldA, Info);
return; return 0;
} }
#endif #endif