diff options
author | Haru <haru@dotalux.com> | 2016-02-19 14:53:45 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-03-20 18:32:06 +0100 |
commit | 3ce598dc1ef86c5fe319536a999246a49c3406bc (patch) | |
tree | 3e14246e64adff903d18ffdccd4030071eed9c47 /src/map/vending.c | |
parent | 504770250595fdb8f3f56400ea101a4d0d45faff (diff) | |
download | hercules-3ce598dc1ef86c5fe319536a999246a49c3406bc.tar.gz hercules-3ce598dc1ef86c5fe319536a999246a49c3406bc.tar.bz2 hercules-3ce598dc1ef86c5fe319536a999246a49c3406bc.tar.xz hercules-3ce598dc1ef86c5fe319536a999246a49c3406bc.zip |
Added const qualifier to some typecasts
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/vending.c')
-rw-r--r-- | src/map/vending.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/vending.c b/src/map/vending.c index 2346932ba..d9001f6f5 100644 --- a/src/map/vending.c +++ b/src/map/vending.c @@ -118,7 +118,7 @@ void vending_purchasereq(struct map_session_data* sd, int aid, unsigned int uid, // some checks z = 0; // zeny counter w = 0; // weight counter - for( i = 0; i < count; i++ ) { + for (i = 0; i < count; i++) { short amount = *(const uint16*)(data + 4*i + 0); short idx = *(const uint16*)(data + 4*i + 2); idx -= 2; @@ -184,7 +184,7 @@ void vending_purchasereq(struct map_session_data* sd, int aid, unsigned int uid, z -= apply_percentrate64(z, battle_config.vending_tax, 10000); pc->getzeny(vsd, (int)z, LOG_TYPE_VENDING, sd); - for( i = 0; i < count; i++ ) { + for (i = 0; i < count; i++) { short amount = *(const uint16*)(data + 4*i + 0); short idx = *(const uint16*)(data + 4*i + 2); idx -= 2; @@ -265,7 +265,7 @@ void vending_openvending(struct map_session_data* sd, const char* message, const // filter out invalid items i = 0; - for( j = 0; j < count; j++ ) { + for (j = 0; j < count; j++) { short index = *(const uint16*)(data + 8*j + 0); short amount = *(const uint16*)(data + 8*j + 2); unsigned int value = *(const uint32*)(data + 8*j + 4); |