1 diff -aur wp2latex.348.orig/sources.cc/atoms/std_str.cc wp2latex.348.new/sources.cc/atoms/std_str.cc
2 --- wp2latex.348.orig/sources.cc/atoms/std_str.cc 2009-08-08 00:01:47.000000000 +0200
3 +++ wp2latex.348.new/sources.cc/atoms/std_str.cc 2009-08-08 00:05:57.000000000 +0200
5 char *StrChr(const char *s, int c)
7 if(s==NULL) return(NULL);
9 + return(strchr((char *)s,c));
14 char *StrStr(const char *str1,const char *str2)
16 if((str1==NULL)||(str2==NULL)) return(NULL);
17 - return(strstr(str1,str2));
18 + return(strstr((char *)str1,(char *)str2));