Skip to content

Commit

Permalink
remove tab characters and trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
abrooks1085 committed Dec 4, 2023
1 parent 6f38e14 commit 36cb001
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion field_manager/fm_util.F90
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ function fm_util_get_index_list(field_name, caller) &
elseif (fm_type .eq. ' ') then !}{
call mpp_error(FATAL, trim(error_header) // ' List does not exist: ' // trim(field_name))
else !}{
call mpp_error(FATAL, trim(error_header) // ' Wrong type for ' // trim(field_name) // ', found (' // trim(fm_type) // ')')
call mpp_error(FATAL, trim(error_header) // ' Wrong type for ' // trim(field_name) //', found ('// trim(fm_type) //')')
endif !}


Expand Down
6 changes: 3 additions & 3 deletions mpp/include/mpp_domains_define.inc
Original file line number Diff line number Diff line change
Expand Up @@ -714,10 +714,10 @@
!--- x_cyclic_offset and y_cyclic_offset should no larger than the global grid size.
if(abs(x_offset) > jeg-jsg+1) call mpp_error(FATAL, &
'MPP_DEFINE_DOMAINS2D: absolute value of x_cyclic_offset is greater than jeg-jsg+1 for '// &
& trim(domain%domain_name))
& trim(domain%domain_name))
if(abs(y_offset) > ieg-isg+1) call mpp_error(FATAL, &
'MPP_DEFINE_DOMAINS2D: absolute value of y_cyclic_offset is greater than ieg-isg+1 for '// &
& trim(domain%domain_name))
& trim(domain%domain_name))
!--- when there is more than one tile on one processor, all the tile will limited on this processor
if( tile > 1 .AND. size(pes(:)) > 1) call mpp_error(FATAL, &
Expand Down Expand Up @@ -1172,7 +1172,7 @@ subroutine check_message_size(domain, update, send, recv, position)
do m = 0, nlist-1
if(msg1(m) .NE. msg2(m)) then
print*, "My pe = ", mpp_pe(), ",domain name =", trim(domain%domain_name), ",at position=",position,",from pe=", &
print*, "My pe = ", mpp_pe(), ",domain name =", trim(domain%domain_name), ",at position=",position,",from pe=",&
domain%list(m)%pe, ":send size = ", msg1(m), ", recv size = ", msg2(m)
call mpp_error(FATAL, "mpp_define_domains2D: mismatch on send and recv size")
endif
Expand Down

0 comments on commit 36cb001

Please sign in to comment.