Skip to content

Commit

Permalink
updating to use is_iostat_end in test_read_input_nml.F90
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenchilutti committed Jul 28, 2023
1 parent 405c923 commit d48ad25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_fms/mpp/test_read_input_nml.F90
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ program test_read_input_nml
n = 1
do
read(1, '(A)', iostat=stat) line
if (stat < 0) then
if (is_iostat_end(stat)) then
exit
end if
if (input_nml_file(n).ne.line) then
Expand Down

0 comments on commit d48ad25

Please sign in to comment.