Skip to content

Commit 404d0ba

Browse files
committed
lint
1 parent abc1c18 commit 404d0ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1779,7 +1779,7 @@ CROARING_TARGET_AVX2
17791779
// a one-pass SSE xor algorithm
17801780
uint32_t xor_vector16(const uint16_t *__restrict__ array1, uint32_t length1,
17811781
const uint16_t *__restrict__ array2, uint32_t length2,
1782-
uint16_t * output) {
1782+
uint16_t *output) {
17831783
if ((length1 < 8) || (length2 < 8)) {
17841784
return xor_uint16(array1, length1, array2, length2, output);
17851785
}

0 commit comments

Comments
 (0)