* lib/memrchr.c (__memrchr): Cast to void * instead of to
longword *, to pacify clang -Wcast-align (Bug#33544).
+2018-11-30 Paul Eggert <eggert@cs.ucla.edu>
+
+ memrchr: port better to clang
+ * lib/memrchr.c (__memrchr): Cast to void * instead of to
+ longword *, to pacify clang -Wcast-align (Bug#33544).
+
2018-11-29 Eric Blake <eblake@redhat.com>
docs: mention printf %m considerations
if (*--char_ptr == c)
return (void *) char_ptr;
- longword_ptr = (const longword *) char_ptr;
+ longword_ptr = (const void *) char_ptr;
/* All these elucidatory comments refer to 4-byte longwords,
but the theory applies equally well to any size longwords. */