Specifications

Visual Fortran Run-Time Errors Page 31 of 48
634
severe (634): D field exceeds W field in ES edit descriptor
FOR$IOS_F6970. The specified decimal length D exceeds the specified total field width
W in an ES edit descriptor.
635
severe (635): D field exceeds W field in EN edit descriptor
FOR$IOS_F6971. The specified decimal length D exceeds the specified total field width
W in an EN edit descriptor.
636
severe (636): Exponent of 0 not allowed in format
FOR$IOS_F6972.
637
severe (637): Integer expected in format
FOR$IOS_F6980. An edit descriptor lacked a required integer value. For example,
consider the following:
WRITE(*, 100) I, J
100 FORMAT (I2, TL, I2)
The preceding code will cause this error because an integer is expected after TL.
638
severe (638): Initial left parenthesis expected in format
FOR$IOS_F6981. A format did not begin with a left parenthesis ( ( ).
639
severe (639): Positive integer expected in format
FOR$IOS_F6982. A zero or negative integer value was used in a format.
Negative integer values can appear only with the P edit descriptor. Integer values of 0
can appear only in the d and m fields of numeric edit descriptors.
640
severe (640): Repeat count on nonrepeatable descriptor
FOR$IOS_F6983. One or more BN, BZ, S, SS, SP, T, TL, TR, /, $, :, or apostrophe
() edit descriptors had repeat counts associated with them.
641
severe (641): Integer expected preceding H, X, or P edit descriptor
FOR$IOS_F6984. An integer did not precede a (nonrepeatable) H, X, or P edit
descriptor.
The correct formats for these descriptors are nH, nX, and kP, respectively, where n is a
positive integer and k is an optionally signed integer.
642
severe (642): N or Z expected after B in format