Skip to content

Commit

Permalink
fixed a warning in pio_support.F90
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed Jun 26, 2019
1 parent 776e542 commit 3f3d5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flib/pio_support.F90
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ subroutine replace_c_null(istr, ilen)
integer(kind=pio_offset_kind), optional, intent(in) :: ilen
integer :: i, slen
if(present(ilen)) then
slen = ilen
slen = int(ilen)
else
slen = len(istr)
endif
Expand Down

0 comments on commit 3f3d5cb

Please sign in to comment.