diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-01-12 13:35:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-01-12 13:35:32 +0300 |
commit | dbf80cecba66c3171ccebb6c22d85c3b52637882 (patch) | |
tree | 18757d1b8237c4f5e5580fe9de5b67d4b011ac25 /src/gui/windows | |
parent | 18ba68228c2a8bce02a7bce1569be9998570d5f2 (diff) | |
download | plus-dbf80cecba66c3171ccebb6c22d85c3b52637882.tar.gz plus-dbf80cecba66c3171ccebb6c22d85c3b52637882.tar.bz2 plus-dbf80cecba66c3171ccebb6c22d85c3b52637882.tar.xz plus-dbf80cecba66c3171ccebb6c22d85c3b52637882.zip |
fix compilation warnings.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/updaterwindow.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/windows/updaterwindow.cpp b/src/gui/windows/updaterwindow.cpp index 7ecfb0d7d..76cfb801f 100644 --- a/src/gui/windows/updaterwindow.cpp +++ b/src/gui/windows/updaterwindow.cpp @@ -653,9 +653,9 @@ void UpdaterWindow::loadManaPlusUpdates(const std::string &dir, if (strStartWith(name, "manaplus_")) { struct stat statbuf; - std::string file = std::string(fixPath).append("/").append(name); - if (!stat(file.c_str(), &statbuf)) - resman->addToSearchPath(file, false); + std::string fileName = std::string(fixPath).append("/").append(name); + if (!stat(fileName.c_str(), &statbuf)) + resman->addToSearchPath(fileName, false); } } } @@ -1028,10 +1028,10 @@ void UpdaterWindow::loadMods(const std::string &dir, if (it != modsList.end()) { struct stat statbuf; - std::string file = std::string(fixPath).append( + std::string fileName = std::string(fixPath).append( "/").append(name); - if (!stat(file.c_str(), &statbuf)) - resman->addToSearchPath(file, false); + if (!stat(fileName.c_str(), &statbuf)) + resman->addToSearchPath(fileName, false); } } } |