diff options
Diffstat (limited to 'lib/lock_holder.h')
-rw-r--r-- | lib/lock_holder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lock_holder.h b/lib/lock_holder.h index 5ae2f8ae..dd997853 100644 --- a/lib/lock_holder.h +++ b/lib/lock_holder.h @@ -23,9 +23,9 @@ public: std::vector<Zstring> dirs = dirnamesFmt; vector_remove_if(dirs, [](const Zstring& dir) { return dir.empty(); }); - for (auto iter = dirs.begin(); iter != dirs.end(); ++iter) + for (auto it = dirs.begin(); it != dirs.end(); ++it) { - const Zstring& dirnameFmt = *iter; + const Zstring& dirnameFmt = *it; if (!dirExistsUpdating(dirnameFmt, allowUserInteraction_, procCallback)) continue; |