diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-13 20:33:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-13 20:33:39 +0300 |
commit | 071ec67ad18431d197332a4a7e13368e60a834e2 (patch) | |
tree | 20b0a7950b6b18e79c0344333833f8393547a5d3 /src/net/eathena/chathandler.cpp | |
parent | 041a5a85ba09650a85f3ac7a3e88e183c6b88c28 (diff) | |
download | manaplus-071ec67ad18431d197332a4a7e13368e60a834e2.tar.gz manaplus-071ec67ad18431d197332a4a7e13368e60a834e2.tar.bz2 manaplus-071ec67ad18431d197332a4a7e13368e60a834e2.tar.xz manaplus-071ec67ad18431d197332a4a7e13368e60a834e2.zip |
Fix compilation warnings.
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 0a5029b6e..d16692cf5 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -406,8 +406,7 @@ void ChatHandler::processColorChat(Net::MessageIn &msg) processChatContinue(message, ChatMsgType::BY_UNKNOWN); } -std::string ChatHandler::extractChannelFromMessage(std::string &chatMsg, - ChatMsgType::Type &own) +std::string ChatHandler::extractChannelFromMessage(std::string &chatMsg) { std::string msg = chatMsg; std::string channel(GENERAL_CHANNEL); @@ -425,7 +424,7 @@ std::string ChatHandler::extractChannelFromMessage(std::string &chatMsg, void ChatHandler::processChatContinue(std::string chatMsg, ChatMsgType::Type own) { - const std::string channel = extractChannelFromMessage(chatMsg, own); + const std::string channel = extractChannelFromMessage(chatMsg); bool allow(true); if (chatWindow) { |