Skip to content

Commit

Permalink
Fixed GNU 'Warning: Line truncated at (1) [-Wline-truncation]' warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
scrasmussen committed Dec 11, 2024
1 parent 35db3f5 commit a495c52
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions physics/SFC_Models/SeaIce/CICE/sfc_sice.f
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ subroutine sfc_sice_run &
!
! - Define constant parameters
integer, parameter :: kmi = 2 !< 2-layer of ice
real(kind=kind_phys), parameter :: zero = 0.0_kind_phys, one = 1.0_kind_phys
real(kind=kind_phys), parameter :: zero = 0.0_kind_phys
real(kind=kind_phys), parameter :: one = 1.0_kind_phys
real(kind=kind_phys), parameter :: himax = 8.0_kind_phys !< maximum ice thickness allowed
real(kind=kind_phys), parameter :: himin = 0.1_kind_phys !< minimum ice thickness required
real(kind=kind_phys), parameter :: hsmax = 2.0_kind_phys !< maximum snow depth allowed
Expand Down Expand Up @@ -541,8 +542,8 @@ subroutine ice3lay
real (kind=kind_phys), parameter :: dili = di*li
real (kind=kind_phys), parameter :: dsli = ds*li
real (kind=kind_phys), parameter :: ki4 = ki*4.0_kind_phys
real (kind=kind_phys), parameter :: zero = 0.0_kind_phys, one = 1.0_kind_phys

real (kind=kind_phys), parameter :: zero = 0.0_kind_phys
real (kind=kind_phys), parameter :: one = 1.0_kind_phys
! --- inputs:
integer, intent(in) :: im, kmi, ipr
logical :: lprnt
Expand Down

0 comments on commit a495c52

Please sign in to comment.