Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/pois.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4511,7 +4511,7 @@ SUBROUTINE SSWAP(N,SX,INCX,SY,INCY)
INTEGER :: N
INTEGER :: INCX
INTEGER :: INCY
REAL(EB) SX(1),SY(1),STEMP1,STEMP2,STEMP3
REAL(EB) SX(*),SY(*),STEMP1,STEMP2,STEMP3
INTEGER :: I, IX, IY, M, MP1, NS

!***FIRST EXECUTABLE STATEMENT SSWAP
Expand Down
2 changes: 2 additions & 0 deletions Source/read.f90
Original file line number Diff line number Diff line change
Expand Up @@ -10338,6 +10338,8 @@ SUBROUTINE READ_RAMP
CTRL_ID = 'null'
X = -1.E6_EB
Z = -1.E6_EB
T = 0._EB
F = 1._EB
CALL CHECKREAD('RAMP',LU_INPUT,IOS) ; IF (STOP_STATUS==SETUP_STOP) RETURN
IF (IOS==1) EXIT SEARCH_LOOP2
READ(LU_INPUT,RAMP)
Expand Down
Loading