[Dart-dev] [6022] DART/branches/development/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 12:58:50 MDT 2013
Revision: 6022
Author: nancy
Date: 2013-03-26 12:58: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/branches/development/obs_sequence/obs_sequence_tool.f90
-------------- next part --------------
Modified: DART/branches/development/obs_sequence/obs_sequence_tool.f90
===================================================================
--- DART/branches/development/obs_sequence/obs_sequence_tool.f90 2013-03-22 18:06:10 UTC (rev 6021)
+++ DART/branches/development/obs_sequence/obs_sequence_tool.f90 2013-03-26 18:58:49 UTC (rev 6022)
@@ -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