]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/libkern/memchr.c
xnu-4570.51.1.tar.gz
[apple/xnu.git] / bsd / libkern / memchr.c
index fced31c67919529e43cb120424ff25acceed6d32..28b335d4647127602541aa672ca173d139a2db7d 100644 (file)
@@ -36,7 +36,7 @@ memchr(const void *bigptr, int ch, size_t length)
        size_t n;
        for (n = 0; n < length; n++)
                if (big[n] == ch)
-                       return (void *)&big[n];
+                       return __DECONST(void *, &big[n]);
        return NULL;
 }