diff --git a/src/OpenFOAM/db/functionObjects/functionObjectList/functionObjectList.C b/src/OpenFOAM/db/functionObjects/functionObjectList/functionObjectList.C index 7d151fa42c..292167048d 100644 --- a/src/OpenFOAM/db/functionObjects/functionObjectList/functionObjectList.C +++ b/src/OpenFOAM/db/functionObjects/functionObjectList/functionObjectList.C @@ -302,8 +302,12 @@ bool Foam::functionObjectList::read() if (!iter().isDict()) { - IOWarningInFunction(parentDict_) - << "Entry " << key << " is not a dictionary" << endl; + if (key != "libs") + { + IOWarningInFunction(parentDict_) + << "Entry " << key << " is not a dictionary" << endl; + } + continue; }