diff --git a/src/mesh/blockMesh/blockMesh/blockMeshMerge.C b/src/mesh/blockMesh/blockMesh/blockMeshMerge.C index 86800142f0..87771f846c 100644 --- a/src/mesh/blockMesh/blockMesh/blockMeshMerge.C +++ b/src/mesh/blockMesh/blockMesh/blockMeshMerge.C @@ -54,7 +54,7 @@ void Foam::blockMesh::calcMergeInfo() if (verboseOutput) { - Info<< "Creating merge list " << flush; + Info<< "Creating merge list.." << flush; } // set unused to -1 @@ -408,7 +408,7 @@ void Foam::blockMesh::calcMergeInfo() } if (verboseOutput) { - Info<< "." << flush; + Info<< '.' << flush; } if (nPasses > 100) diff --git a/src/mesh/blockMesh/blockMesh/blockMeshMergeFast.C b/src/mesh/blockMesh/blockMesh/blockMeshMergeFast.C index 34ead8b998..1f72302495 100644 --- a/src/mesh/blockMesh/blockMesh/blockMeshMergeFast.C +++ b/src/mesh/blockMesh/blockMesh/blockMeshMergeFast.C @@ -328,8 +328,7 @@ void Foam::blockMesh::calcMergeInfoFast() if (verboseOutput) { - Info<< "Creating merge list using the fast topological search" - << flush; + Info<< "Creating merge list with fast topological search.." << flush; } // Size merge list and initialize to -1 @@ -550,7 +549,7 @@ void Foam::blockMesh::calcMergeInfoFast() if (verboseOutput) { - Info<< "." << flush; + Info<< '.' << flush; } if (nPasses > 100) @@ -562,6 +561,10 @@ void Foam::blockMesh::calcMergeInfoFast() } while (changedPointMerge); + if (verboseOutput) + { + Info<< endl; + } // Sort merge list and count number of unique points label nUniqPoints = 0;