Skip to content

Commit e51682d

Browse files
Bug fix: potholes where always fixed/checked, regardless of user input.
1 parent 26fb7c9 commit e51682d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/topogtools.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ program topogtools
116116
case('fill_fraction')
117117
call set_args('--input:i "unset" --output:o "unset" --fraction 0.0', help_fill_fraction, version_text)
118118
case ('fix_nonadvective')
119-
call set_args('--input:i "unset" --output:o "unset" --vgrid "ocean_vgrid.nc" --potholes T --coastal-cells F', &
119+
call set_args('--input:i "unset" --output:o "unset" --vgrid "ocean_vgrid.nc" --potholes F --coastal-cells F', &
120120
help_fix_nonadvective, version_text)
121121
case ('check_nonadvective')
122-
call set_args('--input:i "unset" --vgrid "ocean_vgrid.nc" --potholes T --coastal-cells F', &
122+
call set_args('--input:i "unset" --vgrid "ocean_vgrid.nc" --potholes F --coastal-cells F', &
123123
help_check_nonadvective, version_text)
124124
case ('mask')
125125
call set_args('--input:i "unset" --output:o "unset"', help_mask, version_text)

0 commit comments

Comments
 (0)