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

Commit

Permalink
Fixed a typo in do loop condition
Browse files Browse the repository at this point in the history
  • Loading branch information
anand43 committed Oct 24, 2023
1 parent 68dd60d commit 91f0daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/swiftest/swiftest_io.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2116,7 +2116,7 @@ module subroutine swiftest_io_netcdf_write_frame_cb(self, nc, param)

! Populate coordinate values for l and m and export to hdf file
allocate(lm_coords(l_dim_max))
do i = 0, l_dim_max
do i = 0, l_dim_max - 1
lm_coords(i + 1) = i
end do

Expand Down

0 comments on commit 91f0daf

Please sign in to comment.