From 761682b6254a3d43e65ff45e07683c61afa6f1e4 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 31 Mar 2012 16:54:22 +0300 Subject: Last part of fixes. --- src/playerrelations.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/playerrelations.cpp') diff --git a/src/playerrelations.cpp b/src/playerrelations.cpp index 11118aee1..d79a621d5 100644 --- a/src/playerrelations.cpp +++ b/src/playerrelations.cpp @@ -552,7 +552,7 @@ bool PlayerRelationsManager::isGoodName(std::string name) { bool status(false); - const int size = name.size(); + const size_t size = name.size(); if (size < 3 || mRelations[name]) return true; @@ -572,7 +572,7 @@ bool PlayerRelationsManager::isGoodName(Being *being) return (being->getGoodStatus() == 1); const std::string name = being->getName(); - const int size = name.size(); + const size_t size = name.size(); if (size < 3 || mRelations[name]) return true; @@ -585,7 +585,7 @@ bool PlayerRelationsManager::isGoodName(Being *being) bool PlayerRelationsManager::checkName(const std::string &name) const { - const int size = name.size(); + const size_t size = name.size(); std::string check = config.getStringValue("unsecureChars"); std::string lastChar = name.substr(size - 1, 1); -- cgit v1.2.3-60-g2f50