Skip to content

Commit

Permalink
remove incorrect comma in write statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Aug 1, 2024
1 parent 95259e4 commit cb4925a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/framework/MOM_domains.F90
Original file line number Diff line number Diff line change
Expand Up @@ -677,10 +677,10 @@ subroutine write_auto_mask_file(mask_table, layout, npes, filename)
true_num_masked_blocks = layout(1) * layout(2) - npes

call open_ASCII_file(file_ascii, trim(filename), action=WRITEONLY_FILE)
write(file_ascii, '(I0)'), true_num_masked_blocks
write(file_ascii, '(I0,",",I0)'), layout(1), layout(2)
write(file_ascii, '(I0)') true_num_masked_blocks
write(file_ascii, '(I0,",",I0)') layout(1), layout(2)
do p = 1, true_num_masked_blocks
write(file_ascii, '(I0,",",I0)'), mask_table(p,1), mask_table(p,2)
write(file_ascii, '(I0,",",I0)') mask_table(p,1), mask_table(p,2)
enddo
call close_file(file_ascii)
end subroutine write_auto_mask_file
Expand Down

0 comments on commit cb4925a

Please sign in to comment.