Skip to content

Commit

Permalink
use f2003 flush statement, not GNU extension flush intrinsic
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerome Jackson committed Jan 15, 2025
1 parent fcffe4b commit dcf11bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io.F90
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ subroutine prterr(error, ie, istdout, istderr, comm)
call comms_no_sync_send(mesg, 128, 0, le, comm)
endif
endif
call flush(istdout)
call flush(istderr)
flush(istdout)
flush(istderr)

error%code = code_deactivated
deallocate (error) ! else allocated error trips uncaught error mechanism (ifdef W90DEV, see io.F90)
Expand Down

0 comments on commit dcf11bf

Please sign in to comment.