Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Oct 2, 2024
1 parent 08fc3ce commit 5af2d5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fuzz/croaring_fuzzer.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ int bitmap64(const char *data, size_t size) {
}

int LLVMFuzzerTestOneInput(const char *data, size_t size) {
if (size == 0) { return 0; }
if (size == 0) {
return 0;
}
if (data[0] % 2 == 0) {
return bitmap32(data + 1, size - 1);
} else {
Expand Down

0 comments on commit 5af2d5c

Please sign in to comment.