1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

radix-tree: squash a pointer arithmetic warning

This commit is contained in:
Joe Thornber 2018-06-21 17:41:56 +01:00
parent 18528180d9
commit 254e5c5d11

View File

@ -628,7 +628,7 @@ static void _erase_elt(void *array, unsigned obj_size, unsigned count, unsigned
obj_size * (count - index - 1));
// Zero the now unused last elt (set's v.type to UNSET)
memset(array + (count - 1) * obj_size, 0, obj_size);
memset(((uint8_t *) array) + (count - 1) * obj_size, 0, obj_size);
}
static bool _remove(struct radix_tree *rt, struct value *root, uint8_t *kb, uint8_t *ke)