From 77a7d0656299fa84d1229af4f852fe2a52e567bd Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 12 Jul 2012 15:27:39 +0000 Subject: Fixed "comparison of unsigned expression < 0 is always false" warning. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16412 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/status.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/map/status.c') diff --git a/src/map/status.c b/src/map/status.c index 5bd894336..1a591e8e5 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -10600,9 +10600,9 @@ static int status_natural_heal_timer(int tid, unsigned int tick, int id, intptr_ * @param refine The target refine level * @return The chance to refine the item, in percent (0~100) **/ -int status_get_refine_chance(enum refine_type wlv, int refine) -{ - if (wlv < 0 || wlv > REFINE_TYPE_MAX || refine < 0 || refine >= MAX_REFINE) +int status_get_refine_chance(enum refine_type wlv, int refine) { + + if ( refine < 0 || refine >= MAX_REFINE) return 0; return refine_info[wlv].chance[refine]; -- cgit v1.2.3-70-g09d2