Skip to content

Commit 3ad63b5

Browse files
committed
Fix a typo
1 parent 40cf5c1 commit 3ad63b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lapack.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ for (gels, gesv, getrs, getri, elty) in
910910
work = Vector{$elty}(undef, 1)
911911
lwork = BlasInt(-1)
912912
for i = 1:2 # first call returns lwork as work[1]
913-
$gels(btrn ? 'T' : 'N'), m, n, size(B,2), A, max(1,stride(A,2)),
913+
$gels(btrn ? 'T' : 'N', m, n, size(B,2), A, max(1,stride(A,2)),
914914
B, max(1,stride(B,2)), work, lwork, info)
915915
chklapackerror(info[])
916916
if i == 1

0 commit comments

Comments
 (0)