summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-10-11 03:10:11 +0000
committerParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-10-11 03:10:11 +0000
commit7b076f97d6ec20013881f44a2a272f4572da2d24 (patch)
tree983f4d8d9b9a3f41127495064fcb32adc05863f5 /src/map/clif.c
parentdc8a2254dab672b34cd23bad6e530ef92664ec4a (diff)
downloadhercules-7b076f97d6ec20013881f44a2a272f4572da2d24.tar.gz
hercules-7b076f97d6ec20013881f44a2a272f4572da2d24.tar.bz2
hercules-7b076f97d6ec20013881f44a2a272f4572da2d24.tar.xz
hercules-7b076f97d6ec20013881f44a2a272f4572da2d24.zip
Added a missing const qualifier to a variable. (bugreport:4472)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14419 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
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);