Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help--question on error message

Status
Not open for further replies.

delpel

Programmer
Feb 3, 2004
2
US
I continue to get the error message:

Rmax=0.006
^
End of source file before end of block started at (^)

Does anybody know what the problem is? All I am doing is defining a variable, so there shouldn't be any problems...right? I'm using a g77 fortran compiler.

thanks for your help,
Darren
 
1) What is the statement before it
2) Do you have CR/LF or just LF or just CR on the previous line. Make sure the line terminators are the same on all lines.
3) Do you have a tab before Rmax? Maybe it does not like tabs
 
Thanks for your input xwb [2thumbsup] The only non-comment statement prior to this statement is a dimension statement that allocates space for arrays. No tabs were used for the line...that's why I'm so confused?
 

Do you have a program or subroutine statement before it?

CaKiwi

"I love mankind, it's people I can't stand" - Linus Van Pelt
 
Just a long shot - F77 isn't free format. Do you by any chance only have 5 spaces instead of 6 before the statement? It may be flagging R as a continuation character.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top