Fix typecast

This commit is contained in:
Thilo Schulz 2011-05-14 20:24:34 +00:00
parent 315632e821
commit 3125035c23

View file

@ -241,7 +241,7 @@ char *strchr( const char *string, int c ) {
if(c)
return NULL;
else
return string;
return (char *) string;
}
char *strstr( const char *string, const char *strCharSet ) {