mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
Fix strpbrk
svn path=/trunk/; revision=15941
This commit is contained in:
@@ -44,7 +44,7 @@ char* strpbrk(const char *s1, const char *s2)
|
||||
{
|
||||
if (char_map[*str / BIT_SIZE] & (1 << (*str % BIT_SIZE)))
|
||||
{
|
||||
return str;
|
||||
return (char*)str;
|
||||
}
|
||||
str++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user