diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-07 21:45:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-07 21:45:58 +0300 |
commit | 9b9f5b35556106799bd72da8f07bd1976b60454a (patch) | |
tree | 25588b3ce8610c1b5db083012d0d6051a1c1cebf /src/net/eathena/questhandler.cpp | |
parent | 4cce9fe89ce1e53f901f07cdb626b63f662e1e17 (diff) | |
download | plus-9b9f5b35556106799bd72da8f07bd1976b60454a.tar.gz plus-9b9f5b35556106799bd72da8f07bd1976b60454a.tar.bz2 plus-9b9f5b35556106799bd72da8f07bd1976b60454a.tar.xz plus-9b9f5b35556106799bd72da8f07bd1976b60454a.zip |
Fix compilation warnings.
Diffstat (limited to 'src/net/eathena/questhandler.cpp')
-rw-r--r-- | src/net/eathena/questhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/questhandler.cpp b/src/net/eathena/questhandler.cpp index d7e8bf6e8..44567139f 100644 --- a/src/net/eathena/questhandler.cpp +++ b/src/net/eathena/questhandler.cpp @@ -129,7 +129,7 @@ void QuestHandler::processAddQuestsObjectives(Net::MessageIn &msg) const int quests = msg.readInt32("quests count"); for (int f = 0; f < quests; f ++) { - const int var = msg.readInt32("quest id"); + msg.readInt32("quest id"); msg.readInt32("time diff"); msg.readInt32("time"); const int num = msg.readInt16("objectives count"); |