Skip to content

Commit

Permalink
fix type of input argument in compute_surface_type_fraction
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenchilutti committed Dec 20, 2023
1 parent 23a9ec0 commit 60022a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FV3GFS/FV3GFS_io.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ subroutine compute_surface_type_fraction(Atm_block, isc, jsc, nx, ny, diagnostic
type(block_control_type), intent(in) :: Atm_block
integer, intent(in) :: isc, jsc, nx, ny
type(gfdl_diag_type), intent(in) :: diagnostic
real, intent(out) :: result(nx, ny)
real(kind=kind_phys), intent(out) :: result(nx, ny)

integer :: i, j, ii, jj, nb, ix, surface_type_code

Expand Down

0 comments on commit 60022a2

Please sign in to comment.