Skip to content

Commit

Permalink
Fix typecast
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilo Schulz committed May 14, 2011
1 parent 315632e commit 3125035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/bg_lib.c
Expand Up @@ -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 ) {
Expand Down

0 comments on commit 3125035

Please sign in to comment.