aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOBasic
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetIOBasic')
-rw-r--r--Carpet/CarpetIOBasic/src/iobasic.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetIOBasic/src/iobasic.cc b/Carpet/CarpetIOBasic/src/iobasic.cc
index 916674950..161671391 100644
--- a/Carpet/CarpetIOBasic/src/iobasic.cc
+++ b/Carpet/CarpetIOBasic/src/iobasic.cc
@@ -325,13 +325,13 @@ namespace CarpetIOBasic {
case 0:
case 3:
{
- size_t const numchars = (width+1)*numcomps*numreds;
+ size_t const numchars = (width+1)*numcomps*mynumreds;
cout << setw(numchars) << setfill('-') << "";
}
break;
case 1:
{
- size_t const numchars = (width+1)*numcomps*numreds-1;
+ size_t const numchars = (width+1)*numcomps*mynumreds-1;
if (fullname.length() > numchars) {
int begin = fullname.length() - (numchars-1);
cout << " *" << fullname.substr(begin);