summaryrefslogtreecommitdiff
path: root/src/dirs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dirs.cpp')
-rw-r--r--src/dirs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dirs.cpp b/src/dirs.cpp
index ae46f2721..c48e910d1 100644
--- a/src/dirs.cpp
+++ b/src/dirs.cpp
@@ -464,7 +464,7 @@ void Dirs::initUpdatesDir()
// Parse out any "http://" or "https://", and set the updates directory
const size_t pos = settings.updateHost.find("://");
- if (pos != settings.updateHost.npos)
+ if (pos != std::string::npos)
{
if (pos + 3 < settings.updateHost.length()
&& !settings.updateHost.empty())