summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-28 03:24:03 +0000
committerLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-28 03:24:03 +0000
commit3b4455299f3c5c0f6d6032c21c15f2e011639749 (patch)
tree1a90d42b5ac90068b5f87fa1ec5d8d7868a0ad31 /src/map/mob.c
parente0b7121e95820094b922c757424dd2e584cbbeaf (diff)
downloadhercules-3b4455299f3c5c0f6d6032c21c15f2e011639749.tar.gz
hercules-3b4455299f3c5c0f6d6032c21c15f2e011639749.tar.bz2
hercules-3b4455299f3c5c0f6d6032c21c15f2e011639749.tar.xz
hercules-3b4455299f3c5c0f6d6032c21c15f2e011639749.zip
- Suppressed compilation warnings (unsigned and signed mismatches)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6793 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 8b6b705dc..3c04a5ead 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -1761,7 +1761,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type)
continue;
temp++;
- if(mvp_damage<md->dmglog[temp].dmg){
+ if(mvp_damage<(unsigned int)md->dmglog[temp].dmg){
third_sd = second_sd;
second_sd = mvp_sd;
mvp_sd=tmpsd[temp];