Skip to content

Commit 9eb70e3

Browse files
Merge pull request #69 from jacobwilliams/68-pgfortran-hotfix
fixed a minor issue preventing compilation with pgfortran
2 parents 82271dd + 17fda21 commit 9eb70e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bspline_sub_module.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3612,7 +3612,7 @@ pure subroutine dbint4(x,y,ndata,ibcl,ibcr,fbcl,fbcr,kntopt,tleft,tright,t,bcoef
36123612
real(wp),dimension(4,4) :: vnikx
36133613
real(wp),dimension(15) :: work !! work array for [[dbspvd]] -- length `(k+1)*(k+2)/2`
36143614

3615-
real(wp),parameter :: wdtol = radix(1.0_wp)**(1-digits(1.0_wp)) !! d1mach(4)
3615+
real(wp),parameter :: wdtol = real(radix(1.0_wp),wp)**(1-digits(1.0_wp)) !! d1mach(4)
36163616
real(wp),parameter :: tol = sqrt(wdtol)
36173617

36183618
if (ndata<2_ip) then

0 commit comments

Comments
 (0)