Skip to content

Commit cfac991

Browse files
committed
couple fixes
1 parent c23e621 commit cfac991

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

fypp/src/la_blas_aux.fypp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,6 @@ module la_blas_aux
207207
character(len=*), intent(in) :: srname
208208
integer(ilp), intent(in) :: info
209209
! =====================================================================
210-
! Intrinsic Functions
211-
intrinsic :: len_trim
212-
! Executable Statements
213-
9999 format( ' ** ON ENTRY TO ', a, ' PARAMETER NUMBER ', i2, ' HAD ','AN ILLEGAL VALUE' )
214210

215211
end subroutine la_xerbla
216212

fypp/src/la_blas_s.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ module la_blas_s
453453
intrinsic :: real
454454
dsdot = sb
455455
if (n<=0) then
456-
la_sdsdot = dsdot
456+
la_sdsdot = real(dsdot,KIND=sp)
457457
return
458458
end if
459459
if (incx==incy .and. incx>0) then
@@ -474,7 +474,7 @@ module la_blas_s
474474
ky = ky + incy
475475
end do
476476
end if
477-
la_sdsdot = dsdot
477+
la_sdsdot = real(dsdot,KIND=sp)
478478
return
479479
end function la_sdsdot
480480

0 commit comments

Comments
 (0)