diff --git a/src/drt/src/dr/FlexDR.cpp b/src/drt/src/dr/FlexDR.cpp index 9cf4f107f44..854c46b5e39 100644 --- a/src/drt/src/dr/FlexDR.cpp +++ b/src/drt/src/dr/FlexDR.cpp @@ -1434,8 +1434,7 @@ void FlexDR::end(bool done) << (double) ((sCut[i] + mCut[i]) ? mCut[i] * 100.0 / (sCut[i] + mCut[i]) : 0.0) - << "%)" - << " " + << "%) " << std::setw((int) std::to_string(totSCut + totMCut).length()) << sCut[i] + mCut[i]; } @@ -1446,7 +1445,7 @@ void FlexDR::end(bool done) msg << "-"; } msg << std::endl; - msg << " " << std::setw(nameLen) << "" + msg << " " << std::setw(nameLen) << " " << std::setw((int) std::to_string(totSCut).length()) << totSCut; if (totMCut) { @@ -1460,8 +1459,7 @@ void FlexDR::end(bool done) << (double) ((totSCut + totMCut) ? totMCut * 100.0 / (totSCut + totMCut) : 0.0) - << "%)" - << " " + << "%) " << std::setw((int) std::to_string(totSCut + totMCut).length()) << totSCut + totMCut; }