Opened 17 years ago
Closed 17 years ago
#171 closed bug (Fixed)
Incorrect variable name in mod_netcdf.F
| Reported by: | m.hadfield | Owned by: | arango |
|---|---|---|---|
| Priority: | minor | Milestone: | Release ROMS/TOMS 3.2 |
| Component: | Nonlinear | Version: | 3.2 |
| Keywords: | Cc: |
Description
Lines 651-653 in mod_netcdf.F are:
DO j=1,LEN(var_Achar(1))
var_Aname(i)(j:j)=' '
END DO
That should be
DO j=1,LEN(var_Achar(1))
var_Achar(i)(j:j)=' '
END DO
This error is detected when compiler bounds checking is enabled.
Note:
See TracTickets
for help on using tickets.

Yes, good catch. I missed that one.
I also corrected missing END IF in routine checkvars.F at line 323. Many thanks to Benedicte Ferre (cstm:ticket:16) and Mathieu Dutour for reporting this bug.