Fortran · File status code
What does IOSTAT 67 — Input Statement Requires Too Much Data mean in Fortran?
A READ (typically unformatted, or formatted with PAD='NO') tried to pull more data than the current record actually contains, and the runtime isn't allowed to pad the missing portion with blanks.
A READ (typically unformatted, or formatted with PAD='NO') tried to pull more data than the current record actually contains, and the runtime isn't allowed to pad the missing portion with blanks.
Confirm the record actually contains as much data as the READ's I/O list expects, or open the file with PAD='YES' (the default for formatted files) so short records are blank-padded instead of erroring.