Skip to content

Commit

Permalink
Bugfix for Github tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonkyoung1 committed Sep 26, 2024
1 parent a8d183f commit b85f54a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/eos.f90
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ end subroutine equationofstate
subroutine init_eos(eos_type,ierr)
use units, only:unit_velocity
use physcon, only:Rg
use io, only:error,warning,fatal
use io, only:error,warning
use eos_mesa, only:init_eos_mesa
use eos_helmholtz, only:eos_helmholtz_init
use eos_piecewise, only:init_eos_piecewise
Expand Down Expand Up @@ -562,7 +562,7 @@ subroutine init_eos(eos_type,ierr)

case(23)
call read_optab(eos_file,ierr)
if (ierr > 0) call fatal('init_eos','Failed to read EOS file',var='ierr',ival=ierr)
if (ierr > 0) call error('init_eos','Failed to read EOS file',var='ierr',ival=ierr)
call init_S07cool

end select
Expand Down

0 comments on commit b85f54a

Please sign in to comment.