mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Missed change during fix for #437
This commit is contained in:
@ -92,7 +92,7 @@ Foam::autoPtr<Foam::OFstream> Foam::functionObjects::writeFile::createFile
|
||||
|
||||
if (Pstream::master() && writeToFile_)
|
||||
{
|
||||
const scalar timeNow = fileObr_.time().timeOutputValue()
|
||||
const scalar timeNow = fileObr_.time().timeOutputValue();
|
||||
const word startTimeName = Time::timeName(timeNow);
|
||||
|
||||
fileName outputDir(baseFileDir()/prefix_/startTimeName);
|
||||
@ -258,7 +258,7 @@ void Foam::functionObjects::writeFile::writeHeader
|
||||
|
||||
void Foam::functionObjects::writeFile::writeTime(Ostream& os) const
|
||||
{
|
||||
const scalar timeNow = fileObr_.time().timeOutputValue()
|
||||
const scalar timeNow = fileObr_.time().timeOutputValue();
|
||||
os << setw(charWidth()) << Time::timeName(timeNow);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user