summaryrefslogtreecommitdiff
path: root/src/net/eathena/cashshophandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-02 17:09:48 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-02 17:09:48 +0300
commit270b231714d47afa5f3caa89f4ff2415d394c1fa (patch)
tree6149aef26922d5071e0ab9d7f036387d29b6c13b /src/net/eathena/cashshophandler.cpp
parent38bed185876ab4e639412392005c0fe01e05d4f2 (diff)
downloadplus-270b231714d47afa5f3caa89f4ff2415d394c1fa.tar.gz
plus-270b231714d47afa5f3caa89f4ff2415d394c1fa.tar.bz2
plus-270b231714d47afa5f3caa89f4ff2415d394c1fa.tar.xz
plus-270b231714d47afa5f3caa89f4ff2415d394c1fa.zip
Fix code style.
Diffstat (limited to 'src/net/eathena/cashshophandler.cpp')
-rw-r--r--src/net/eathena/cashshophandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/cashshophandler.cpp b/src/net/eathena/cashshophandler.cpp
index ba6a5455f..c6191c512 100644
--- a/src/net/eathena/cashshophandler.cpp
+++ b/src/net/eathena/cashshophandler.cpp
@@ -105,8 +105,8 @@ void CashShopHandler::buyItem(const int points,
outMsg.writeInt16(10 + 4, "len");
outMsg.writeInt32(points, "points");
outMsg.writeInt16(1, "count");
- outMsg.writeInt16(amount, "amount");
- outMsg.writeInt16(itemId, "item id");
+ outMsg.writeInt16(static_cast<int16_t>(amount), "amount");
+ outMsg.writeInt16(static_cast<int16_t>(itemId), "item id");
}
} // namespace EAthena