Skip to content

Commit

Permalink
FIX: Fix directory path max length
Browse files Browse the repository at this point in the history
The maximum length of a path has been adjusted to 256 characters instead of 128
  • Loading branch information
inoelloc committed May 31, 2024
1 parent c535819 commit 62206b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions smash/fcore/derived_type/mwd_setup.f90
Original file line number Diff line number Diff line change
Expand Up @@ -92,30 +92,30 @@ module mwd_setup
logical :: compute_mean_atmos = .true.

logical :: read_qobs = .false.
character(lchar) :: qobs_directory = "..." !$F90W char
character(2*lchar) :: qobs_directory = "..." !$F90W char

logical :: read_prcp = .false.
character(lchar) :: prcp_format = "..." !$F90W char
real(sp) :: prcp_conversion_factor = 1._sp
character(lchar) :: prcp_directory = "..." !$F90W char
character(2*lchar) :: prcp_directory = "..." !$F90W char
character(lchar) :: prcp_access = "..." !$F90W char

logical :: read_pet = .false.
character(lchar) :: pet_format = "..." !$F90W char
real(sp) :: pet_conversion_factor = 1._sp
character(lchar) :: pet_directory = "..." !$F90W char
character(2*lchar) :: pet_directory = "..." !$F90W char
character(lchar) :: pet_access = "..." !$F90W char
logical :: daily_interannual_pet = .false.

logical :: read_snow = .false.
character(lchar) :: snow_format = "..." !$F90W char
real(sp) :: snow_conversion_factor = 1._sp
character(lchar) :: snow_directory = "..." !$F90W char
character(2*lchar) :: snow_directory = "..." !$F90W char
character(lchar) :: snow_access = "..." !$F90W char

logical :: read_temp = .false.
character(lchar) :: temp_format = "..." !$F90W char
character(lchar) :: temp_directory = "..." !$F90W char
character(2*lchar) :: temp_directory = "..." !$F90W char
character(lchar) :: temp_access = "..." !$F90W char

logical :: prcp_partitioning = .false.
Expand All @@ -124,7 +124,7 @@ module mwd_setup

logical :: read_descriptor = .false.
character(lchar) :: descriptor_format = "..." !$F90W char
character(lchar) :: descriptor_directory = "..." !$F90W char
character(2*lchar) :: descriptor_directory = "..." !$F90W char
character(20), allocatable, dimension(:) :: descriptor_name !$F90W char-array

! Post processed variables
Expand Down

0 comments on commit 62206b1

Please sign in to comment.