aboutsummaryrefslogtreecommitdiff
path: root/ewah/bitmap.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-02-13 13:39:24 -0800
committerJunio C Hamano <gitster@pobox.com>2026-02-13 13:39:24 -0800
commitb8524125239a2dd9bbc2bc87deda475f9cc3580e (patch)
tree4bdd70670cbaf567ae2ab3ef4d749a5b298d897f /ewah/bitmap.c
parent453e7b744aef0d9dab62dac6ab030bb643a2e117 (diff)
parent60614838a44591c1449f939236f396bb7164b5ef (diff)
downloadgit-b8524125239a2dd9bbc2bc87deda475f9cc3580e.tar.xz
Merge branch 'tc/memzero-array'
Coccinelle rules update. * tc/memzero-array: cocci: extend MEMZERO_ARRAY() rules
Diffstat (limited to 'ewah/bitmap.c')
-rw-r--r--ewah/bitmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ewah/bitmap.c b/ewah/bitmap.c
index bf878bf876..c378e0ab78 100644
--- a/ewah/bitmap.c
+++ b/ewah/bitmap.c
@@ -46,7 +46,7 @@ static void bitmap_grow(struct bitmap *self, size_t word_alloc)
{
size_t old_size = self->word_alloc;
ALLOC_GROW(self->words, word_alloc, self->word_alloc);
- MEMZERO_ARRAY(self->words + old_size, (self->word_alloc - old_size));
+ MEMZERO_ARRAY(self->words + old_size, self->word_alloc - old_size);
}
void bitmap_set(struct bitmap *self, size_t pos)
@@ -192,7 +192,7 @@ void bitmap_or_ewah(struct bitmap *self, struct ewah_bitmap *other)
self->word_alloc = other_final;
REALLOC_ARRAY(self->words, self->word_alloc);
MEMZERO_ARRAY(self->words + original_size,
- (self->word_alloc - original_size));
+ self->word_alloc - original_size);
}
ewah_iterator_init(&it, other);