aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOASCII
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2008-10-10 10:27:13 -0500
committerErik Schnetter <schnetter@cct.lsu.edu>2008-10-10 10:51:33 -0500
commit85e717feb74c9d1a15f9c23fb2d3ae15dcc3fb63 (patch)
tree24f3305747af9ace67292ecedc363cb85eb172f4 /Carpet/CarpetIOASCII
parent05962e2d278286020dd87b208f47d6c9896818a7 (diff)
CarpetIOASCII: Improve startup message
Diffstat (limited to 'Carpet/CarpetIOASCII')
-rw-r--r--Carpet/CarpetIOASCII/src/ioascii.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetIOASCII/src/ioascii.cc b/Carpet/CarpetIOASCII/src/ioascii.cc
index 26c0c9af6..155c637f4 100644
--- a/Carpet/CarpetIOASCII/src/ioascii.cc
+++ b/Carpet/CarpetIOASCII/src/ioascii.cc
@@ -190,12 +190,12 @@ namespace CarpetIOASCII {
if (not CCTK_Equals (verbose, "none")) {
int count = 0;
ostringstream msg;
- msg << "Periodic " << outdim << "D AMR output requested for:" << eol;
+ msg << "Periodic " << outdim << "D AMR output requested for:";
for (int vi=0; vi< CCTK_NumVars(); ++vi) {
if (requests.at(vi)) {
++count;
char* const fullname = CCTK_FullName(vi);
- msg << " " << fullname << eol;
+ msg << eol << " " << fullname;
free (fullname);
}
}