utilities: Correct "End" statement to be consistent with all other applications

This commit is contained in:
Henry
2015-02-12 22:14:02 +00:00
parent ec143fcdb1
commit 0bf2543df6
6 changed files with 11 additions and 8 deletions

View File

@ -385,7 +385,10 @@ int main(int argc, char *argv[])
} }
} }
Info<< "End." << endl; Info<< "\nEnd\n" << endl;
return 0;
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -1334,7 +1334,7 @@ int main(int argc, char *argv[])
).write(); ).write();
} }
Info<< "\nEnd.\n" << endl; Info<< "\nEnd\n" << endl;
return 0; return 0;
} }

View File

@ -131,7 +131,7 @@ int main(int argc, char *argv[])
RotateFields<surfaceTensorField>(mesh, objects, T); RotateFields<surfaceTensorField>(mesh, objects, T);
} }
Info<< "\nEnd.\n" << endl; Info<< "\nEnd\n" << endl;
return 0; return 0;
} }

View File

@ -1129,7 +1129,7 @@ int main(int argc, char *argv[])
} }
} }
Info<< "\nEnd.\n" << endl; Info<< "\nEnd\n" << endl;
return 0; return 0;
} }

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -882,7 +882,7 @@ int main(int argc, char *argv[])
} }
} }
Info<< "End.\n" << endl; Info<< "\nEnd\n" << endl;
return 0; return 0;
} }

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -908,7 +908,7 @@ int main(int argc, char *argv[])
} }
Info<< "End.\n" << endl; Info<< "\nEnd\n" << endl;
return 0; return 0;
} }