summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-06 20:59:46 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-06 20:59:46 +0300
commit115104e15373eb83f8b7fd2c5681fc1305d5d402 (patch)
treec2b0f509432ed1e10f7449c43f73f96dc7a9e38f /src/map/clif.c
parenta420b092af7d39f75a09888784f4a828d12eff6c (diff)
downloadhercules-115104e15373eb83f8b7fd2c5681fc1305d5d402.tar.gz
hercules-115104e15373eb83f8b7fd2c5681fc1305d5d402.tar.bz2
hercules-115104e15373eb83f8b7fd2c5681fc1305d5d402.tar.xz
hercules-115104e15373eb83f8b7fd2c5681fc1305d5d402.zip
initialize missing variable in clif_changelook.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index b8f7467a2..5e459f6a7 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -3193,7 +3193,7 @@ void clif_changelook(struct block_list *bl,int type,int val)
struct status_change* sc;
struct view_data* vd;
enum send_target target = AREA;
- int val2;
+ int val2 = 0;
nullpo_retv(bl);
sd = BL_CAST(BL_PC, bl);