Skip to content
Snippets Groups Projects
Commit 6b3742c3 authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: Missed change during fix for #437

parent bbe49050
Branches
Tags
No related merge requests found
......@@ -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);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment