diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-25 13:48:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-25 13:48:24 +0300 |
commit | 6c05739c62484dae8d5ed9fb0dfdb6590aacfe88 (patch) | |
tree | df4a3e32b8ad9e77d894280966a0066f4aef0a94 /src/client.cpp | |
parent | 9a970ba6bc80938b56f3ba731bf4614b40ba573d (diff) | |
download | plus-6c05739c62484dae8d5ed9fb0dfdb6590aacfe88.tar.gz plus-6c05739c62484dae8d5ed9fb0dfdb6590aacfe88.tar.bz2 plus-6c05739c62484dae8d5ed9fb0dfdb6590aacfe88.tar.xz plus-6c05739c62484dae8d5ed9fb0dfdb6590aacfe88.zip |
improve a bit strings declaration.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index 64dd6ed53..d4ec0fba5 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -2251,7 +2251,7 @@ void Client::initUpdatesDir() #endif const ResourceManager *const resman = ResourceManager::getInstance(); - const std::string updateDir = "/" + mUpdatesDir; + const std::string updateDir("/" + mUpdatesDir); // Verify that the updates directory exists. Create if necessary. if (!resman->isDirectory(updateDir)) |