summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-08 19:49:55 +0000
committertoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-08 19:49:55 +0000
commit0c6767b4c8cf0019d2df26598ce40ed303c63b20 (patch)
tree7dfe4d3f646d3651597a17947767c429fb64efca
parentf96f703a1252a0229b59a58951dc2ba55dd66736 (diff)
downloadhercules-0c6767b4c8cf0019d2df26598ce40ed303c63b20.tar.gz
hercules-0c6767b4c8cf0019d2df26598ce40ed303c63b20.tar.bz2
hercules-0c6767b4c8cf0019d2df26598ce40ed303c63b20.tar.xz
hercules-0c6767b4c8cf0019d2df26598ce40ed303c63b20.zip
Fixed compilation warning
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8191 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/skill.c2
-rw-r--r--vcproj-8/map-server_sql.vcproj2
3 files changed, 3 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 49315d29f..251f066a6 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/08/08
+ * Fixed compilation warning [Toms]
* Added a check to handle Spider Web as a targetted skill. If there's more
than one character on the targetted cell, a different one may get trapped,
but it will mostly do as it is now. [Skotlex]
diff --git a/src/map/skill.c b/src/map/skill.c
index 3c505eb81..41471ade3 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -5598,7 +5598,7 @@ int skill_castend_id (int tid, unsigned int tick, int id, int data)
struct homun_data* hd = NULL; //[orn]
struct mob_data* md = NULL;
struct unit_data* ud = unit_bl2ud(src);
- struct status_change *sc;
+ struct status_change *sc = NULL;
int inf,inf2;
nullpo_retr(0, ud);
diff --git a/vcproj-8/map-server_sql.vcproj b/vcproj-8/map-server_sql.vcproj
index dabc39e30..d02257a23 100644
--- a/vcproj-8/map-server_sql.vcproj
+++ b/vcproj-8/map-server_sql.vcproj
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
- Version="8.00"
+ Version="8,00"
Name="map-server_sql"
ProjectGUID="{D356871D-58E1-450B-967A-E6E9646175AF}"
RootNamespace="map-server_sql"