mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Fix typecast
This commit is contained in:
parent
315632e821
commit
3125035c23
1 changed files with 1 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue