* malloc/malloc.c: Fix powerof2 check.
+2014-12-11 Steve Ellcey <sellcey@imgtec.com>
+
+ * malloc/malloc.c: Fix powerof2 check.
+
2014-12-11 Stefan Liebler <stli@linux.vnet.ibm.com>
* locale/programs/locfile.h (maybe_swap_uint32):
/* Test whether the SIZE argument is valid. It must be a power of
two multiple of sizeof (void *). */
if (alignment % sizeof (void *) != 0
- || !powerof2 (alignment / sizeof (void *)) != 0
+ || !powerof2 (alignment / sizeof (void *))
|| alignment == 0)
return EINVAL;