diff --git a/librepomgr/buildactions/customcommand.cpp b/librepomgr/buildactions/customcommand.cpp index 1b3c958..06b6cd0 100644 --- a/librepomgr/buildactions/customcommand.cpp +++ b/librepomgr/buildactions/customcommand.cpp @@ -77,8 +77,8 @@ void CustomCommand::run() // acquire locks // note: Using an std::set here (instead of a std::vector) to ensure we don't attempt to acquire the same lock twice and to ensure // locks are always acquired in the same order (to prevent deadlocks). - const auto sharedLockNames = splitStringSimple>(findSetting(sharedLocksSetting), ","); - const auto exclusiveLockNames = splitStringSimple>(findSetting(exclusiveLocksSetting), ","); + const auto sharedLockNames = splitStringSimple>(findSetting(sharedLocksSetting), ","); + const auto exclusiveLockNames = splitStringSimple>(findSetting(exclusiveLocksSetting), ","); auto &locks = process->locks(); auto &log = m_buildAction->log(); locks.reserve(sharedLockNames.size() + exclusiveLockNames.size());