diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-24 11:29:12 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-24 11:29:12 +0100 |
commit | 3c1b2d1c2a5bca25de5c2523c7ddde4c9dcdacde (patch) | |
tree | 34ee8342d3ed0efc8840402478aed7943d75a050 /src/utils | |
parent | 418ffcadb0a5334ebe621369c14d6c3dd651acce (diff) | |
download | mana-3c1b2d1c2a5bca25de5c2523c7ddde4c9dcdacde.tar.gz mana-3c1b2d1c2a5bca25de5c2523c7ddde4c9dcdacde.tar.bz2 mana-3c1b2d1c2a5bca25de5c2523c7ddde4c9dcdacde.tar.xz mana-3c1b2d1c2a5bca25de5c2523c7ddde4c9dcdacde.zip |
Fixed a few coding errors the compiler complained about
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/stringutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/stringutils.cpp b/src/utils/stringutils.cpp index 4f27d41b..05f1bf7b 100644 --- a/src/utils/stringutils.cpp +++ b/src/utils/stringutils.cpp @@ -136,7 +136,7 @@ int compareStrI(const std::string &a, const std::string &b) std::string::const_iterator itB = b.begin(); std::string::const_iterator endB = b.end(); - for (; itA < endA, itB < endB; ++itA, ++itB) + for (; itA < endA && itB < endB; ++itA, ++itB) { int comp = tolower(*itA) - tolower(*itB); if (comp) |