Skip to content

Commit

Permalink
FDS Source: Change integer format
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgratta committed Oct 16, 2023
1 parent 570c016 commit 1d0983a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/read.f90
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ INTEGER FUNCTION READ_STOP()

OPEN(UNIT=LU_STOP,FILE=FN_STOP,FORM='FORMATTED',STATUS='OLD',IOSTAT=IERROR)
IF (IERROR==0) THEN
READ(LU_STOP,'(I5)',END=10,IOSTAT=IERROR) READ_STOP
READ(LU_STOP,'(I0)',END=10,IOSTAT=IERROR) READ_STOP
IF (IERROR/=0) READ_STOP=0
ENDIF
10 CLOSE(LU_STOP)
Expand Down

0 comments on commit 1d0983a

Please sign in to comment.