From 414b9fbcd9bf6f49ba98d84babfac143aa9e6532 Mon Sep 17 00:00:00 2001
From: Andrei Karas <akaras@inbox.ru>
Date: Sun, 21 Feb 2016 01:05:33 +0300
Subject: Change some int constants to unsigned.

---
 src/net/eathena/skillrecv.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src/net/eathena')

diff --git a/src/net/eathena/skillrecv.cpp b/src/net/eathena/skillrecv.cpp
index 66450cccc..52f2e3b2b 100644
--- a/src/net/eathena/skillrecv.cpp
+++ b/src/net/eathena/skillrecv.cpp
@@ -299,7 +299,7 @@ void SkillRecv::processSkillFailed(Net::MessageIn &msg)
             break;
         case RFAIL_NEED_EQUIPMENT:
         {
-            const int itemId = bskill >> 16;
+            const int itemId = bskill >> 16U;
             const int amount = bskill & 0xFFFFU;
             const ItemInfo &info = ItemDB::get(itemId);
             if (amount == 1)
@@ -319,7 +319,7 @@ void SkillRecv::processSkillFailed(Net::MessageIn &msg)
         }
         case RFAIL_NEED_ITEM:
         {
-            const int itemId = bskill >> 16;
+            const int itemId = bskill >> 16U;
             const int amount = bskill & 0xFFFFU;
             const ItemInfo &info = ItemDB::get(itemId);
             if (amount == 1)
-- 
cgit v1.2.3-70-g09d2