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:27:13 -0500
commit377d40f411bee54cc45e513e53eea511372e5c6d (patch)
tree82555e4d09dec57f5baa34922d5cfe199286caa0 /Carpet/CarpetIOASCII
parent89844b9849d0ac5f5710b1f743342375e044630e (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 0e3bfb4f4..17e944ff2 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);
}
}