diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-29 13:42:12 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-29 13:42:12 +0000 |
commit | b4f4d581c9fc604a2aac90523eb8cbbebe62185b (patch) | |
tree | 4a1d05f865bf91c208d79a05bbcb22ab06eee768 | |
parent | eebfc36c15910697eba22ffa8229c6656add6e39 (diff) | |
download | hercules-b4f4d581c9fc604a2aac90523eb8cbbebe62185b.tar.gz hercules-b4f4d581c9fc604a2aac90523eb8cbbebe62185b.tar.bz2 hercules-b4f4d581c9fc604a2aac90523eb8cbbebe62185b.tar.xz hercules-b4f4d581c9fc604a2aac90523eb8cbbebe62185b.zip |
* Removed unreferenced local variable in pc.c
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6371 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/pc.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 7fa702f8c..056db18ba 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/04/29
+ * Removed unreferenced local variable in pc.c [Lance]
* Reverted npc_checknear to exclude check for class_ -1.
* Removed npc_checknear in npc_buysellsel, npc_selllist and npc_buylist
as enough preventive measures of hacking are already implemented.
diff --git a/src/map/pc.c b/src/map/pc.c index 90f3fa001..b3c88c0a3 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2919,7 +2919,7 @@ int pc_show_steal(struct block_list *bl,va_list ap) //** pc.c: Small Steal Item fix by fritz
int pc_steal_item(struct map_session_data *sd,struct block_list *bl)
{
- int i,j,skill,itemid,flag;
+ int i,skill,itemid,flag;
struct mob_data *md;
struct item tmp_item;
|