Skip to content

Commit

Permalink
Fix syntax error in Cleanup_DataCont routine
Browse files Browse the repository at this point in the history
src/Core/hco_datacont_mod.F90
- In Cleanup_DataCont, added a missing ")" character in the IF statement
  where DeepClean is defined.

Signed-off-by: Bob Yantosca <[email protected]>
  • Loading branch information
yantosca committed Feb 22, 2023
1 parent 71f5081 commit 52beff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/hco_datacont_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ SUBROUTINE DataCont_Cleanup( Dct, ArrOnly )

! Optional argument handling
DeepClean = .TRUE.
IF ( PRESENT( ArrOnly ) DeepClean = ( .not. ArrOnly )
IF ( PRESENT( ArrOnly ) ) DeepClean = ( .not. ArrOnly )

! Clean up FileData object. If DeepClean is true, this
! will entirely erase the file data object. Otherwise,
Expand Down

0 comments on commit 52beff6

Please sign in to comment.