diff options
Diffstat (limited to 'src/dbus/server/auto-sync-manager.cpp')
-rw-r--r-- | src/dbus/server/auto-sync-manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbus/server/auto-sync-manager.cpp b/src/dbus/server/auto-sync-manager.cpp index 56595f8c..3f70b697 100644 --- a/src/dbus/server/auto-sync-manager.cpp +++ b/src/dbus/server/auto-sync-manager.cpp @@ -384,7 +384,7 @@ void AutoSyncManager::sessionStarted(const std::shared_ptr<Session> &session) { // Do we have a task for this config? std::string configName = session->getConfigName(); - PeerMap::iterator it = m_peerMap.find(configName); + auto it = m_peerMap.find(configName); if (it == m_peerMap.end()) { SE_LOG_DEBUG(NULL, "auto sync: ignore running sync %s without config", configName.c_str()); |