Skip to content

Commit

Permalink
use correct print argument for parse fuzzer
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed Sep 2, 2024
1 parent a342d43 commit 2a43339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/parse.cc
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
}

// Only used for avoiding dead-code elimination
printf("length of url is %d\n", length);
printf("length of url is %zu\n", length);

return 0;
} // extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {

0 comments on commit 2a43339

Please sign in to comment.