HP Fortran Programmer's Reference (September 2007)
I/O runtime error messages
Runtime I/O errors
Appendix A664
915 READ UNEXPECTED
CHARACTER
Read a character that is
not admissible for the
type of conversion being
performed. Input value
was too large for the type
of the variable.
Remove from input data
any characters that are
illegal in integers or real
numbers.
916 ERROR IN READ OF
LOGICAL DATA
An illegal character was
read when logical data
was expected.
Change input data to
correspond to syntax
expected when reading
logical data or use input
statement corresponding
to syntax of input data.
917 OPEN WITH NAMED
SCRATCH FILE
ATTEMPTED
Executed OPEN
statement with
STATUS='SCRATCH',
but also named the file.
Scratch files must not be
named.
Either remove the FILE=
specifier, or open the file
with a status other than
STATUS='SCRATCH'.
918 OPEN OF EXISTING
FILE WITH
STATUS='NEW'
ATTEMPTED
Executed OPEN
statement with
STATUS='NEW', but file
already exists.
Either remove the
STATUS= specifier from
the OPEN statement, or
use the STATUS='OLD';
STATUS='UNKNOWN';
or STATUS='REPLACE'
specifier.
920 OPEN OF FILE
CONNECTED TO
DIFFERENT UNIT
ATTEMPTED
You attempted to open a
file that is already open
with a different unit
number.
Close the file with the
current unit number
before attempting to open
it with a different unit
number.
921 UNFORMATTED
OPEN WITH BLANK
SPECIFIER
ATTEMPTED
OPEN statement
specified
FORM='UNFORMATTE
D' and BLANK=xx.
Either use
FORM='FORMATTED'
or remove BLANK=xx.
Table A-1 Runtime I/O errors (Continued)
Error
no.
Error message Description Action