Cast RHS to const unsigned char * to avoid error from Irix-4.0.5's C compiler.

This commit is contained in:
Jim Meyering 1995-05-27 20:22:12 +00:00
parent 7cc645ed27
commit 58581baf02

View file

@ -64,8 +64,9 @@ memchr (s, c, n)
/* Handle the first few characters by reading one character at a time.
Do this until CHAR_PTR is aligned on a longword boundary. */
for (char_ptr = s; n > 0 && ((unsigned long int) char_ptr
& (sizeof (longword) - 1)) != 0;
for (char_ptr = (const unsigned char *) s;
n > 0 && ((unsigned long int) char_ptr
& (sizeof (longword) - 1)) != 0;
--n, ++char_ptr)
if (*char_ptr == c)
return (__ptr_t) char_ptr;