Skip to content

Commit

Permalink
make dofs i*8 arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
DeniseWorthen committed Oct 8, 2024
1 parent 91f1111 commit cc7e41c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions model/src/wav_pio_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ subroutine wav_pio_initdecomp_2d(iodesc, use_int)
logical , optional, intent(in) :: use_int

! local variables
integer :: n, isea, jsea, ix, iy, nseal_cpl
integer, pointer :: dof2d(:)
logical :: luse_int
integer :: n, isea, jsea, ix, iy, nseal_cpl
logical :: luse_int
integer(kind=8), allocatable :: dof2d(:)
#ifdef W3_PDLIB
nseal_cpl = nseal - ng
#else
Expand Down Expand Up @@ -356,8 +356,8 @@ subroutine wav_pio_initdecomp_3d(nz, iodesc)
type(io_desc_t) , intent(out) :: iodesc

! local variables
integer :: n, k, isea, jsea, ix, iy, nseal_cpl
integer, pointer :: dof3d(:)
integer :: n, k, isea, jsea, ix, iy, nseal_cpl
integer(kind=8), allocatable :: dof3d(:)
#ifdef W3_PDLIB
nseal_cpl = nseal - ng
#else
Expand Down

0 comments on commit cc7e41c

Please sign in to comment.