diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-16 19:28:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-16 19:28:16 +0300 |
commit | cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96 (patch) | |
tree | fdda7e2c3d93b35771f6eb79c22dce9301082f19 /src/client.cpp | |
parent | f8fc3380197c078a6dcff02351d835c3022411e1 (diff) | |
download | mv-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.gz mv-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.bz2 mv-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.xz mv-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.zip |
Add const to variables with type size_t.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client.cpp b/src/client.cpp index 5ef48b5d4..c5369127b 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -1859,8 +1859,7 @@ void Client::initUpdatesDir() mUpdateHost.resize(mUpdateHost.size() - 1); // Parse out any "http://" or "ftp://", and set the updates directory - size_t pos; - pos = mUpdateHost.find("://"); + const size_t pos = mUpdateHost.find("://"); if (pos != mUpdateHost.npos) { if (pos + 3 < mUpdateHost.length() && !mUpdateHost.empty()) |