summaryrefslogtreecommitdiff
path: root/src/net/tmwa/chathandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/chathandler.cpp')
-rw-r--r--src/net/tmwa/chathandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp
index 2323631cb..b3bf8b536 100644
--- a/src/net/tmwa/chathandler.cpp
+++ b/src/net/tmwa/chathandler.cpp
@@ -150,7 +150,7 @@ void ChatHandler::sendRaw(const std::string &args)
if (line == "")
return;
- std::string::size_type pos = line.find(" ");
+ size_t pos = line.find(" ");
if (pos != std::string::npos)
{
str = line.substr(0, pos);
@@ -179,7 +179,7 @@ void ChatHandler::sendRaw(const std::string &args)
void ChatHandler::processRaw(MessageOut &outMsg, std::string &line)
{
- std::string::size_type pos = line.find(":");
+ size_t pos = line.find(":");
if (pos == std::string::npos)
{
int i = atoi(line.c_str());