Skip to content

Commit

Permalink
Small fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juha Ruokolainen committed Jan 29, 2025
1 parent 5cd8608 commit 59bbd13
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions fem/src/Lists.F90
Original file line number Diff line number Diff line change
Expand Up @@ -873,8 +873,12 @@ SUBROUTINE VariableAdd( Variables,Mesh,Solver,Name,DOFs,Values,&
TYPE(Solver_t), POINTER :: VSolver
!------------------------------------------------------------------------------

CALL Info('VariableAdd','Adding variable > '//TRIM(Name)//&
' < of size '//I2S(SIZE(Values)),Level=15)
IF(ASSOCIATED(Values)) THEN
CALL Info('VariableAdd','Adding variable > '//TRIM(Name)//&
' < of size '//I2S(SIZE(Values)),Level=15)
ELSE
CALL Info('VariableAdd','Adding variable > '//TRIM(Name), Level=15)
END IF

NULLIFY(VSolver)
IF (PRESENT(Solver)) VSolver => Solver
Expand Down

0 comments on commit 59bbd13

Please sign in to comment.