summaryrefslogtreecommitdiff
path: root/ewah
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-03-13 06:21:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-03-13 06:21:35 (GMT)
commitcb36508ac50baa3f8b2df9bc2c69c260c5977b8f (patch)
tree1d4d76d4e231a8c91180aed05e3d9d349b5e788c /ewah
parent36d5286f6815542761dae92fdcdce8db1556727f (diff)
parent3255e512a8594cc5f811aea0dd769429c0f0d614 (diff)
downloadgit-cb36508ac50baa3f8b2df9bc2c69c260c5977b8f.zip
git-cb36508ac50baa3f8b2df9bc2c69c260c5977b8f.tar.gz
git-cb36508ac50baa3f8b2df9bc2c69c260c5977b8f.tar.bz2
Merge branch 'jk/ewah-use-right-type-in-sizeof'
Code clean-up. * jk/ewah-use-right-type-in-sizeof: ewah: fix eword_t/uint64_t confusion
Diffstat (limited to 'ewah')
-rw-r--r--ewah/ewah_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ewah/ewah_io.c b/ewah/ewah_io.c
index 61f6a43..f732109 100644
--- a/ewah/ewah_io.c
+++ b/ewah/ewah_io.c
@@ -142,8 +142,8 @@ int ewah_read_mmap(struct ewah_bitmap *self, const void *map, size_t len)
* the endianness conversion in a separate pass to ensure
* we're loading 8-byte aligned words.
*/
- memcpy(self->buffer, ptr, self->buffer_size * sizeof(uint64_t));
- ptr += self->buffer_size * sizeof(uint64_t);
+ memcpy(self->buffer, ptr, self->buffer_size * sizeof(eword_t));
+ ptr += self->buffer_size * sizeof(eword_t);
for (i = 0; i < self->buffer_size; ++i)
self->buffer[i] = ntohll(self->buffer[i]);