Skip to content

Commit

Permalink
Update src/base/path.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Vladimir Golovnev <glassez@yandex.ru>
  • Loading branch information
DoubleSpicy and glassez authored Jan 30, 2025
1 parent 1b72e5a commit cef2fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ QString Path::getUNCRootPathStr() const
{
// only call this with isUNCPath() guard
int slashCount = 0, index;
for (index = 0; index < m_pathStr.size(); index++)
for (index = 0; index < m_pathStr.size(); ++index)
{
if (m_pathStr[index] == u'\\')
{
Expand Down

0 comments on commit cef2fff

Please sign in to comment.