summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/clif.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index ba0aabc66..245268a88 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.
2010/10/10
+ * Added a missing const qualifier to a variable. (bugreport:4472) [Paradox924X]
* Rev. 14418 Follow up from r14413, should take care of the errors from bugreport:4472. [L0ne_W0lf]
* Pull `name` from character table instead of using `master` from guild table when loading guild data. [Paradox924X]
* Use `char_id` rather than `master` when checking if a guild needs to be deleted during character deletion. [Paradox924X]
diff --git a/src/map/clif.c b/src/map/clif.c
index 250220931..dfc464fb9 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -7377,7 +7377,7 @@ void clif_wedding_effect(struct block_list *bl)
void clif_callpartner(struct map_session_data *sd)
{
unsigned char buf[26];
- char *p;
+ const char *p;
nullpo_retv(sd);