diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-12 16:26:53 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-12 16:26:53 +0000 |
commit | c2da0a3c7938b6461c3293b31d0e2f0db723f8d3 (patch) | |
tree | b5f02fcb696fd2be0c21529238cc14161d814387 /src/map/mob.c | |
parent | 2eb9dcd521e8c726f8731e3bdfcc2e0f2e675225 (diff) | |
download | hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.tar.gz hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.tar.bz2 hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.tar.xz hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.zip |
Fixed all warnings left from when compiling with -pedantic, confirmed with gcc, llvm and clang.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16415 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index c59febd42..0516295cc 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1793,7 +1793,7 @@ static struct item_drop* mob_setdropitem(int nameid, int qty) drop->item_data.identify = itemdb_isidentified(nameid); drop->next = NULL; return drop; -}; +} /*========================================== * Initializes the delay drop structure for mob-looted items. @@ -1804,7 +1804,7 @@ static struct item_drop* mob_setlootitem(struct item* item) memcpy(&drop->item_data, item, sizeof(struct item)); drop->next = NULL; return drop; -}; +} /*========================================== * item drop with delay (timer function) |