aboutsummaryrefslogtreecommitdiff
path: root/Carpet
diff options
context:
space:
mode:
authorschnetter <>2004-05-27 10:23:00 +0000
committerschnetter <>2004-05-27 10:23:00 +0000
commit4b06928bddf6ed5146716a82078b1660b922dd7f (patch)
tree14d90f1f2d95baa60d5d21ab44ea94ad3692eaf9 /Carpet
parente0ac5b544b58fa6544f65e3ceec38b5297aaf96d (diff)
Use "." instead of "-" to separate the patch number from the rest of
Use "." instead of "-" to separate the patch number from the rest of the file name. darcs-hash:20040527102303-07bb3-73514051b9a9776633a63d1f8fc7cc8e7f3f4650.gz
Diffstat (limited to 'Carpet')
-rw-r--r--Carpet/CarpetIOASCII/src/ioascii.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/Carpet/CarpetIOASCII/src/ioascii.cc b/Carpet/CarpetIOASCII/src/ioascii.cc
index 4778912f1..13923fa80 100644
--- a/Carpet/CarpetIOASCII/src/ioascii.cc
+++ b/Carpet/CarpetIOASCII/src/ioascii.cc
@@ -31,7 +31,7 @@
#include "ioascii.hh"
extern "C" {
- static const char* rcsid = "$Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetIOASCII/src/ioascii.cc,v 1.70 2004/05/21 18:10:37 schnetter Exp $";
+ static const char* rcsid = "$Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetIOASCII/src/ioascii.cc,v 1.71 2004/05/27 12:23:03 schnetter Exp $";
CCTK_FILEVERSION(Carpet_CarpetIOASCII_ioascii_cc);
}
@@ -427,7 +427,7 @@ namespace CarpetIOASCII {
if (new_filename_scheme) {
filenamebuf << myoutdir << "/" << alias << ".";
if (maps > 1) {
- filenamebuf << Carpet::map << "-";
+ filenamebuf << Carpet::map << ".";
}
for (int d=0; d<outdim; ++d) {
const char* const coords = "xyz";
@@ -447,7 +447,7 @@ namespace CarpetIOASCII {
} else {
filenamebuf << myoutdir << "/" << alias << ".";
if (maps > 1) {
- filenamebuf << Carpet::map << "-";
+ filenamebuf << Carpet::map << ".";
}
for (int d=0; d<outdim; ++d) {
assert (dirs[d]>=0 && dirs[d]<3);