Update variable names

This commit is contained in:
Jean Flach 2018-08-22 15:12:47 +02:00 committed by Michael Friedrich
parent 13a8fa20f9
commit 8fe490f945
1 changed files with 5 additions and 5 deletions

View File

@ -478,15 +478,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();
@ -494,9 +494,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())