From a63499e948f27fd3830ef49dfa5eb783772b9087 Mon Sep 17 00:00:00 2001 From: Eric Morway Date: Thu, 1 Aug 2024 14:23:51 -0700 Subject: [PATCH] fix(gwf-uzf): variable name NTRAIL should be NTRAIL_PVAR (#1973) --- src/Model/GroundWaterFlow/gwf-uzf.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/GroundWaterFlow/gwf-uzf.f90 b/src/Model/GroundWaterFlow/gwf-uzf.f90 index 38796164a4e..e7eca787f77 100644 --- a/src/Model/GroundWaterFlow/gwf-uzf.f90 +++ b/src/Model/GroundWaterFlow/gwf-uzf.f90 @@ -2650,7 +2650,7 @@ subroutine uzf_allocate_scalars(this) call mem_allocate(this%ibudgetout, 'IBUDGETOUT', this%memoryPath) call mem_allocate(this%ibudcsv, 'IBUDCSV', this%memoryPath) call mem_allocate(this%ipakcsv, 'IPAKCSV', this%memoryPath) - call mem_allocate(this%ntrail_pvar, 'NTRAIL', this%memoryPath) + call mem_allocate(this%ntrail_pvar, 'NTRAIL_PVAR', this%memoryPath) call mem_allocate(this%nsets, 'NSETS', this%memoryPath) call mem_allocate(this%nodes, 'NODES', this%memoryPath) call mem_allocate(this%istocb, 'ISTOCB', this%memoryPath)