Skip to content

Commit

Permalink
Fixed write_txt error for missing argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
drnimbusrain committed Sep 14, 2023
1 parent 16f5e8c commit b9eccfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/canopy_write_txt.F90
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

SUBROUTINE canopy_write_txt(OUTPREFX)
SUBROUTINE canopy_write_txt(OUTPREFX,TIMENOW)

!-------------------------------------------------------------------------------
! Name: Write Canopy Outputs to TXT
Expand All @@ -12,9 +12,9 @@ SUBROUTINE canopy_write_txt(OUTPREFX)
IMPLICIT NONE

CHARACTER(LEN=*), INTENT( IN ) :: OUTPREFX
CHARACTER(LEN=*), INTENT( IN ) :: TIMENOW


call write_txt(OUTPREFX)
call write_txt(OUTPREFX,TIMENOW)


END SUBROUTINE canopy_write_txt

0 comments on commit b9eccfd

Please sign in to comment.