Skip to content

Commit

Permalink
fix: string concatenation for CCE compiler (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcallic2 authored Sep 28, 2022
1 parent 1099a28 commit 163cb3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fms2_io/netcdf_io.F90
Original file line number Diff line number Diff line change
Expand Up @@ -906,8 +906,8 @@ subroutine netcdf_add_variable(fileobj, variable_name, variable_type, dimensions
&deflate_level=deflate_level, chunksizes=chunksizes)
else
if (present(deflate_level) .or. present(chunksizes)) &
&call mpp_error(NOTE,"Not able to use deflate_level or chunksizes if not using netcdf4"&
" ignoring them")
&call mpp_error(NOTE,"Not able to use deflate_level or chunksizes if not using netcdf4"// &
& " ignoring them")
err = nf90_def_var(fileobj%ncid, trim(variable_name), vtype, dimids, varid)
endif
deallocate(dimids)
Expand Down

0 comments on commit 163cb3e

Please sign in to comment.