[Dart-dev] [6023] DART/trunk/obs_sequence/obs_sequence_tool.f90: make the outgoing message buffer plenty long so if you have

nancy at ucar.edu nancy at ucar.edu
Tue Mar 26 13:15:49 MDT 2013


Revision: 6023
Author:   nancy
Date:     2013-03-26 13:15:49 -0600 (Tue, 26 Mar 2013)
Log Message:
-----------
make the outgoing message buffer plenty long so if you have
filenames up to 129 chars long there is still room to prepend
strings in front of the name in log messages.  bug reported
by jared lee.

Modified Paths:
--------------
    DART/trunk/obs_sequence/obs_sequence_tool.f90

-------------- next part --------------
Modified: DART/trunk/obs_sequence/obs_sequence_tool.f90
===================================================================
--- DART/trunk/obs_sequence/obs_sequence_tool.f90	2013-03-26 18:58:49 UTC (rev 6022)
+++ DART/trunk/obs_sequence/obs_sequence_tool.f90	2013-03-26 19:15:49 UTC (rev 6023)
@@ -60,7 +60,7 @@
 character(len = metadatalength) :: read_format, meta_data
 logical                 :: pre_I_format, all_gone
 logical                 :: trim_first, trim_last
-character(len = 129)    :: msgstring
+character(len = 255)    :: msgstring
 
 ! could go into namelist if you wanted more control
 integer, parameter      :: print_every = 20000


More information about the Dart-dev mailing list