diff --git a/applications/utilities/mesh/manipulation/renumberMesh/renumberMesh.C b/applications/utilities/mesh/manipulation/renumberMesh/renumberMesh.C index 8910645b5c196cf190e32bd2dc11e66d40c7f8ac..5f724095ca4a36b58dc5e1ca7314b54962c71e10 100644 --- a/applications/utilities/mesh/manipulation/renumberMesh/renumberMesh.C +++ b/applications/utilities/mesh/manipulation/renumberMesh/renumberMesh.C @@ -641,9 +641,12 @@ int main(int argc, char *argv[]) Info<< "Mesh size: " << mesh.globalData().nTotalCells() << nl << "Before renumbering :" << nl << " band : " << band << nl - << " profile : " << profile << nl - << " rms frontwidth : " << rmsFrontwidth << nl - << endl; + << " profile : " << profile << nl; + if (doFrontWidth) + { + Info<< " rms frontwidth : " << rmsFrontwidth << nl; + } + Info<< endl; bool sortCoupledFaceCells = false; bool writeMaps = false;