Specifications

Visual Fortran Run-Time Errors Page 21 of 48
opened with FORM=’FORMATTED’ and ACCESS=SEQUENTIAL’.
553
severe (553): Terminal I/O not consistent with OPEN options
FOR$IOS_F6202. When a special device such as CON, LPT1, or PRN is opened in an
OPEN statement, its access must be sequential and its format must be either formatted
or binary. By default ACCESS=’SEQUENTIAL’ and FORM=’FORMATTED’ in
OPEN statements. To generate this error the device’s OPEN statement must contain an
option not appropriate for a terminal device, such as ACCESS=’DIRECT’ or
FORM=’UNFORMATTED’.
554
severe (554): Direct I/O not consistent with OPEN options
FOR$IOS_F6203. A REC= option was included in a statement that transferred data to
a file that was opened with the ACCESS=’SEQUENTIAL’ option.
555
severe (555): Unformatted I/O not consistent with OPEN options
FOR$IOS_F6204. If a file is opened with FORM=’FORMATTED’, unformatted or
binary data transfer is prohibited.
556
severe (556): A edit descriptor expected for CHARACTER
FOR$IOS_F6205. The A edit descriptor was not specified when a character data item
was read or written using formatted I/O.
557
severe (557): E, F, D, or G edit descriptor expected for REAL
FOR$IOS_F6206. The E, F, D, or G edit descriptor was not specified when a real data
item was read or written using formatted I/O.
558
severe (558): I edit descriptor expected for INTEGER
FOR$IOS_F6207. The I edit descriptor was not specified when an integer data item was
read or written using formatted I/O.
559
severe (559): L edit descriptor expected for LOGICAL
FOR$IOS_F6208. The L edit descriptor was not specified when a logical data item was
read or written using formatted I/O.
560
severe (560): File already open: parameter mismatch
FOR$IOS_F6209. An OPEN statement specified a connection between a unit and a
filename that was already in effect. In this case, only the BLANK= option can have a
different setting.
561
severe (561): Namelist I/O not consistent with OPEN options
FOR$IOS_F6210. The program tried to perform namelist I/O on a file that was not
opened with FORM=’FORMATTED’ and ACCESS=’SEQUENTIAL’.