Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fixed indexing in netcdf_read_frame_base
Browse files Browse the repository at this point in the history
  • Loading branch information
cwishard committed Sep 29, 2021
1 parent 357345f commit c528b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/netcdf/netcdf.f90
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ module function netcdf_read_frame_base(self, iu, param) result(ierr)
n = count(tpmask(:) .and. validmask(:))
end select

do i = j, n
do j = 1, n
idslot = ind(j)

if (param%in_form == XV) then
Expand Down

0 comments on commit c528b9a

Please sign in to comment.