Skip to content

Commit c543714

Browse files
committed
Merge pull request #257 from staticfloat/develop
Add in return value for `interface/trtri.c`
2 parents d4f9571 + 6f5b395 commit c543714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/trtri.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ int NAME(char *UPLO, char *DIAG, blasint *N, FLOAT *a, blasint *ldA, blasint *In
138138
// call dtrtri from lapack for a walk around.
139139
if(uplo==0){
140140
dtrtri_lapack_(UPLO, DIAG, N, a, ldA, Info);
141-
return;
141+
return 0;
142142
}
143143
#endif
144144

0 commit comments

Comments
 (0)