before we forget ...

This commit is contained in:
Martin Diehl 2020-06-02 17:34:58 +02:00
parent 742b3718ec
commit 512e54a7ee
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ function IO_read(fileName) result(fileContent)
if(myStat /= 0) call IO_error(100,ext_msg=trim(fileName))
allocate(character(len=fileLength)::fileContent)
read(fileUnit,iostat=myStat) fileContent
if(myStat > 0) call IO_error(102,ext_msg=trim(fileName))
if(myStat > 0) call IO_error(102,ext_msg=trim(fileName)) ! <0 for ifort (https://software.intel.com/en-us/comment/1960081)
close(fileUnit)
end function IO_read