diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-10-16 03:25:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-10-16 03:58:49 +0300 |
commit | a103f05d6eba441e25bd2905597a88db0b58e7b0 (patch) | |
tree | f6c480fe712427f001cb2ef198de2bbb43babe3f /src/gui | |
parent | e15da561988948de26c80105dc9762943009b9e7 (diff) | |
download | plus-a103f05d6eba441e25bd2905597a88db0b58e7b0.tar.gz plus-a103f05d6eba441e25bd2905597a88db0b58e7b0.tar.bz2 plus-a103f05d6eba441e25bd2905597a88db0b58e7b0.tar.xz plus-a103f05d6eba441e25bd2905597a88db0b58e7b0.zip |
Change type for some loop variables [ci skip]
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index 58cc268ed..eb28639f8 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -878,7 +878,7 @@ void ShopWindow::showList(const std::string &nick, std::string data) if (sellDialog != nullptr) sellDialog->setMoney(PlayerInfo::getAttribute(Attributes::MONEY)); - for (unsigned f = 0; f < data.length(); f += 9) + for (size_t f = 0; f < data.length(); f += 9) { if (f + 9 > data.length()) break; |