merge from gcc

This commit is contained in:
DJ Delorie
2001-03-28 05:02:47 +00:00
parent 6a9c388603
commit 30a1def20d
2 changed files with 5 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ memchr (src_void, c, length)
{
const unsigned char *src = (const unsigned char *)src_void;
while (--length >= 0)
while (length-- > 0)
{
if (*src == c)
return (PTR)src;