summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
author(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-05 06:02:39 +0000
committer(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-05 06:02:39 +0000
commiteedd229519169dee4733be16f9e842fc29ae7110 (patch)
tree1f6e77b4c1f40f457742cced9dcc5801c9d1b468 /src/map/npc.c
parent0fc7a56a962e4b337d6aa639b5447450b760c045 (diff)
downloadhercules-eedd229519169dee4733be16f9e842fc29ae7110.tar.gz
hercules-eedd229519169dee4733be16f9e842fc29ae7110.tar.bz2
hercules-eedd229519169dee4733be16f9e842fc29ae7110.tar.xz
hercules-eedd229519169dee4733be16f9e842fc29ae7110.zip
more compile errors
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1040 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index 0519b9925..95788a2cd 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -1655,13 +1655,13 @@ static int npc_parse_script(char *w1,char *w2,char *w3,char *w4,char *first_line
}
if (srcbuf[0]!='{') {
if (strchr((char *) line,'{')) {
- strcpy(srcbuf,strchr((const char *) line,'{'));
+ strcpy((char *) srcbuf,strchr((const char *) line,'{'));
startline=*lines;
}
} else
- strcat(srcbuf,line);
+ strcat((char *) srcbuf,(const char *) line);
}
- script=parse_script(srcbuf,startline);
+ script=(unsigned char *) parse_script((unsigned char *) srcbuf,startline);
if (script==NULL) {
// script parse error?
aFree(srcbuf);
@@ -1681,7 +1681,7 @@ static int npc_parse_script(char *w1,char *w2,char *w3,char *w4,char *first_line
printf("bad duplicate name! (not exist) : %s\n",srcname);
return 0;
}
- script=nd2->u.scr.script;
+ script=(unsigned char *)nd2->u.scr.script;
label_dup=nd2->u.scr.label_list;
label_dupnum=nd2->u.scr.label_list_num;
src_id=nd2->bl.id;
@@ -1744,7 +1744,7 @@ static int npc_parse_script(char *w1,char *w2,char *w3,char *w4,char *first_line
nd->flag=0;
nd->class_=class_;
nd->speed=200;
- nd->u.scr.script=script;
+ nd->u.scr.script=(char *) script;
nd->u.scr.src_id=src_id;
nd->chat_id=0;
nd->option = 0;
@@ -1893,7 +1893,7 @@ static int npc_parse_function(char *w1,char *w2,char *w3,char *w4,char *first_li
} else
strcat(srcbuf,line);
}
- script=parse_script(srcbuf,startline);
+ script= parse_script((unsigned char *) srcbuf,startline);
if (script==NULL) {
// script parse error?
aFree(srcbuf);
@@ -2160,7 +2160,7 @@ static int npc_read_indoors(void)
char *buf,*p;
int s, m;
- buf=grfio_reads("data\\indoorrswtable.txt",&s);
+ buf=(char *) grfio_reads("data\\indoorrswtable.txt",&s);
if(buf==NULL)
return -1;
@@ -2191,7 +2191,7 @@ static int npc_read_indoors(void)
static int ev_db_final(void *key,void *data,va_list ap)
{
aFree(data);
- if(strstr(key,"::")!=NULL)
+ if(strstr((const char *) key,"::")!=NULL)
aFree(key);
return 0;
}