- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Are there any details about this error code?
I looked up the user guide but the I/O errors stop at 217.
I've been trying to compiler some visual fortran code, that was originally developed on windows but this error is halting my progress.
Any help is appreciated.
I looked up the user guide but the I/O errors stop at 217.
I've been trying to compiler some visual fortran code, that was originally developed on windows but this error is halting my progress.
Any help is appreciated.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The error means that your application uses a code, which looks like this:
...
write(...) ..., func(), ...
...
integer function func()
...
write(...) ...
...
end function func
WRITE statement attempts to write result of a function, which has the similar WRITE statement.
-serjX
...
write(...) ..., func(), ...
...
integer function func()
...
write(...) ...
...
end function func
WRITE statement attempts to write result of a function, which has the similar WRITE statement.
-serjX

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page