Skip to content

Commit

Permalink
Address the feedback of the code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ben Hourahine <[email protected]>
  • Loading branch information
vanderhe and bhourahine committed Aug 25, 2024
1 parent f9d3e84 commit aa34b49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sktwocnt/prog/input.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module input

use common_accuracy, only : dp
use common_globalenv, only : stdOut
use common_globalenv, only : stdOut, abortProgram
use gridorbital, only : TGridorb2_init
use twocnt, only : TTwocntInp, TAtomdata
use xcfunctionals, only : xcFunctional
Expand Down Expand Up @@ -460,7 +460,8 @@ subroutine error_(txt, fname, line, iLine)
write(stdOut, "(2X,A,I0)") "Line number: ", iLine
write(stdOut, "(2X,A,A,A)") "Line: '", trim(line), "'"

stop
flush(stdOut)
call abortProgram()

end subroutine error_

Expand Down

0 comments on commit aa34b49

Please sign in to comment.