From 9b9f5b35556106799bd72da8f07bd1976b60454a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 7 Sep 2014 21:45:58 +0300 Subject: Fix compilation warnings. --- src/net/eathena/inventoryhandler.cpp | 2 +- src/net/eathena/playerhandler.cpp | 8 ++++---- src/net/eathena/questhandler.cpp | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/net') diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index c6838fe19..dba668745 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -445,7 +445,7 @@ void InventoryHandler::processPlayerInventoryRemove2(Net::MessageIn &msg) // +++ here possible use particle or text/sound effects // for different reasons - const int reason = msg.readInt16("reason"); + msg.readInt16("reason"); const int index = msg.readInt16("index") - INVENTORY_OFFSET; const int amount = msg.readInt16("amount"); if (inventory) diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 77ad01e19..35759bfd6 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -330,10 +330,10 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) void PlayerHandler::processPlayerGetExp(Net::MessageIn &msg) { - const int id = msg.readInt32("player id"); - const int exp = msg.readInt32("exp amount"); - const int type = msg.readInt16("exp type"); - const int isQuest = msg.readInt16("is from quest"); + msg.readInt32("player id"); + msg.readInt32("exp amount"); + msg.readInt16("exp type"); + msg.readInt16("is from quest"); // Being *dstBeing = actorManager->findBeing(id); // need show particle depend on isQuest flag, for now ignored } 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"); -- cgit v1.2.3-60-g2f50