From e51682d96b10c3ed876067c1eae26130e19bba78 Mon Sep 17 00:00:00 2001 From: Micael Oliveira Date: Tue, 31 Jan 2023 11:20:33 +1100 Subject: [PATCH] Bug fix: potholes where always fixed/checked, regardless of user input. --- src/topogtools.f90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/topogtools.f90 b/src/topogtools.f90 index ee238d9..de8c075 100644 --- a/src/topogtools.f90 +++ b/src/topogtools.f90 @@ -116,10 +116,10 @@ program topogtools case('fill_fraction') call set_args('--input:i "unset" --output:o "unset" --fraction 0.0', help_fill_fraction, version_text) case ('fix_nonadvective') - call set_args('--input:i "unset" --output:o "unset" --vgrid "ocean_vgrid.nc" --potholes T --coastal-cells F', & + call set_args('--input:i "unset" --output:o "unset" --vgrid "ocean_vgrid.nc" --potholes F --coastal-cells F', & help_fix_nonadvective, version_text) case ('check_nonadvective') - call set_args('--input:i "unset" --vgrid "ocean_vgrid.nc" --potholes T --coastal-cells F', & + call set_args('--input:i "unset" --vgrid "ocean_vgrid.nc" --potholes F --coastal-cells F', & help_check_nonadvective, version_text) case ('mask') call set_args('--input:i "unset" --output:o "unset"', help_mask, version_text)