From 0a68e706bac90f56073f3ad2a30c4bada260225c Mon Sep 17 00:00:00 2001 From: Lance Date: Mon, 29 May 2006 10:27:02 +0000 Subject: * [Fixed]: - status.c:920: warning: 'mbl' might be used uninitialized in this function - skill.c:6648: warning: 'matk_min' might be used uninitialized in this function - skill.c:6648: warning: 'matk_max' might be used uninitialized in this function - skill.c:2826: warning: 'sid' might be used uninitialized in this function git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6816 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/skill.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/skill.c') diff --git a/src/map/skill.c b/src/map/skill.c index af0fef4b5..e9fd52854 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2823,7 +2823,7 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl,int s case HVAN_CAPRICE: //[blackhole89] { int ran=rand()%4; - int sid; + int sid = 0; switch(ran) { case 0: sid=MG_COLDBOLT; break; @@ -6645,7 +6645,7 @@ int skill_unit_onplace_timer(struct skill_unit *src,struct block_list *bl,unsign struct status_data *tstatus, *sstatus; struct status_change *tsc, *sc; struct skill_unit_group_tickset *ts; - int matk_min, matk_max; //For Magic power... + int matk_min = 0, matk_max = 0; //For Magic power... int type, skillid; int diff=0; -- cgit v1.2.3-60-g2f50