Skip to content

Commit b0f70af

Browse files
jalveszjvdp1
andauthored
Update example/linalg/example_solve_custom.f90
Co-authored-by: Jeremie Vandenplas <[email protected]>
1 parent 59cc51a commit b0f70af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/linalg/example_solve_custom.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ subroutine solve_pcg_custom(A,b,x,di,tol,maxiter,restart,workspace)
4040
if(present(di))then
4141
di_ => di
4242
else
43-
allocate(di_(n),source=.false._1)
43+
allocate(di_(n),source=.false._int8)
4444
end if
4545

4646
if(present(workspace)) then

0 commit comments

Comments
 (0)