Skip to content

Commit f4dbb6d

Browse files
authored
Merge pull request #155 from lrineau/main
fix a compilation error in src/lib/third_party/numerics/SUPERLU/
2 parents 037bf2a + 3430a55 commit f4dbb6d

File tree

1 file changed

+1
-1
lines changed
  • src/lib/third_party/numerics/SUPERLU

1 file changed

+1
-1
lines changed

src/lib/third_party/numerics/SUPERLU/slacon2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ slacon2_(int *n, float *v, float *x, int *isgn, float *est, int *kase, int isave
160160
#ifdef _CRAY
161161
isave[1] = ISAMAX(n, &x[0], &c__1); /* j */
162162
#else
163-
isave[1] = idamax_(n, &x[0], &c__1); /* j */
163+
isave[1] = isamax_(n, &x[0], &c__1); /* j */
164164
#endif
165165
--isave[1]; /* --j; */
166166
isave[2] = 2; /* iter = 2; */

0 commit comments

Comments
 (0)