Update variable names

refs #6568
This commit is contained in:
Jean Flach 2018-08-22 15:12:47 +02:00 committed by Michael Friedrich
parent bd927f1bd7
commit 6f20749fb8
1 changed files with 5 additions and 5 deletions

View File

@ -469,15 +469,15 @@ bool ConfigItem::CommitNewItems(const ActivationContext::Ptr& context, WorkQueue
if (unresolved_dep)
continue;
int commited_items = 0;
upq.ParallelFor(items, [&type, &commited_items](const ItemPair& ip) {
int committed_items = 0;
upq.ParallelFor(items, [&type, &committed_items](const ItemPair& ip) {
const ConfigItem::Ptr& item = ip.first;
if (item->m_Type != type)
return;
ip.first->Commit(ip.second);
commited_items++;
committed_items++;
});
upq.Join();
@ -485,9 +485,9 @@ bool ConfigItem::CommitNewItems(const ActivationContext::Ptr& context, WorkQueue
completed_types.insert(type);
#ifdef I2_DEBUG
if (commited_items > 0)
if (committed_items > 0)
Log(LogDebug, "configitem")
<< "Committed " << commited_items << " items of type '" << type->GetName() << "'.";
<< "Committed " << committed_items << " items of type '" << type->GetName() << "'.";
#endif /* I2_DEBUG */
if (upq.HasExceptions())