Skip to content

Commit

Permalink
Use the correct local logical variable when calling down into C++ layer.
Browse files Browse the repository at this point in the history
  • Loading branch information
theurich committed Sep 25, 2024
1 parent cda15d3 commit e957f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Infrastructure/VM/interface/ESMF_VM.F90
Original file line number Diff line number Diff line change
Expand Up @@ -10395,7 +10395,7 @@ function ESMF_VMIdCompare(vmId1, vmId2, keyOnly, rc)
endif

! Call into the C++ interface
call c_ESMC_VMIdCompare(vmId1, vmId2, keyOnly, tf, localrc)
call c_ESMC_VMIdCompare(vmId1, vmId2, keyOnlyOpt, tf, localrc)
ESMF_VMIdCompare = tf == ESMF_TRUE
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
Expand Down

0 comments on commit e957f39

Please sign in to comment.