Opened 17 years ago
Closed 17 years ago
#136 closed bug (Fixed)
Type (mixing of upper and lower letters)
Reported by: | crode1968 | Owned by: | arango |
---|---|---|---|
Priority: | trivial | Milestone: | Release ROMS/TOMS 3.1 |
Component: | Nonlinear | Version: | 3.1 |
Keywords: | Cc: |
Description
The two character variables svn_url
and svn_rev
occur in different spellings regarding the utilization of upper and lower case characters. Normally Fortran does not care about, but the compiler is meticulous on our new machine.
IMHO the following patch might solve the inconsistency
> diff -u mod_ncparam.F.org mod_ncparam.F --- mod_ncparam.F.org Fri Mar 7 14:32:01 2008 +++ mod_ncparam.F Fri Mar 7 14:35:35 2008 @@ -548,8 +548,8 @@ ! ! SVN revision and repository root URL. ! - character (len=40 ) :: svn_Rev - character (len=120) :: svn_URL + character (len=40 ) :: svn_rev + character (len=120) :: svn_url CONTAINS
Thanks and have a nice weekend!
Note:
See TracTickets
for help on using tickets.
Yes, good catch.