Changes between Initial Version and Version 1 of Ticket #225
- Timestamp:
- 10/27/08 17:55:12 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #225
- Property Milestone Release ROMS/TOMS 3.0 → Release ROMS/TOMS 3.1
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #225 – Description
initial v1 1 In Utility/get_varcoords.Fline 91, the variable 'name' is used in an error message without it being initialised. A similar error message on line 85 has the correct initialisation on the previous line. The solution is therefore to insert the line2 1 In '''Utility/get_varcoords.F''' line 91, the variable 'name' is used in an error message without it being initialised. A similar error message on line 85 has the correct initialisation on the previous line. The solution is therefore to insert the line 2 {{{ 3 3 status=nf90_inquire_variable(ncid, ncvarid, name) 4 4 }}} 5 5 before line 91.