[Dart-dev] [6258] DART/trunk/models/MITgcm_annulus: These two files had a string that was continued onto the next line without an & at the start of the continuation line .

nancy at ucar.edu nancy at ucar.edu
Wed Jun 12 14:31:03 MDT 2013


Revision: 6258
Author:   hkershaw
Date:     2013-06-12 14:31:02 -0600 (Wed, 12 Jun 2013)
Log Message:
-----------
These two files had a string that was continued onto the next line without an & at the start of the continuation line. This was a problem for the pathscale/4.0.12.1 compiler, so I moved the line break so the string was not split.

Modified Paths:
--------------
    DART/trunk/models/MITgcm_annulus/trans_dart_to_MITgcm.f90
    DART/trunk/models/MITgcm_annulus/trans_perfect_ics.f90

-------------- next part --------------
Modified: DART/trunk/models/MITgcm_annulus/trans_dart_to_MITgcm.f90
===================================================================
--- DART/trunk/models/MITgcm_annulus/trans_dart_to_MITgcm.f90	2013-06-12 20:13:59 UTC (rev 6257)
+++ DART/trunk/models/MITgcm_annulus/trans_dart_to_MITgcm.f90	2013-06-12 20:31:02 UTC (rev 6258)
@@ -90,9 +90,9 @@
 write(     *     , nml=model_nml)
 
 
-call error_handler(E_MSG,'trans_dart_to_MITgcm',                     &
-                  'Converting a dart state vector to an MITgcm &
-                   restart file', source, revision, revdate)
+call error_handler(E_MSG,'trans_dart_to_MITgcm',               &
+   'Converting a dart state vector to an MITgcm restart file', &
+   source, revision, revdate)
 
 ! allocate space for dart vector
 allocate(dart(model_size))

Modified: DART/trunk/models/MITgcm_annulus/trans_perfect_ics.f90
===================================================================
--- DART/trunk/models/MITgcm_annulus/trans_perfect_ics.f90	2013-06-12 20:13:59 UTC (rev 6257)
+++ DART/trunk/models/MITgcm_annulus/trans_perfect_ics.f90	2013-06-12 20:31:02 UTC (rev 6258)
@@ -94,9 +94,9 @@
 write(     *     , nml=model_nml)
 
 
-call error_handler(E_MSG,'trans_perfect_ics',               &
-                  'Converting an MITgcm restart file into a &
-                   dart initial condition file', source, revision, revdate)
+call error_handler(E_MSG,'trans_perfect_ics',                              &
+   'Converting an MITgcm restart file into a dart initial condition file', &
+   source, revision, revdate)
 
 ! allocate space for dart vector
 allocate(dart(model_size))


More information about the Dart-dev mailing list