diff --git a/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp b/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp index c85e21b5a3..64f44cc2ef 100644 --- a/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp +++ b/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp @@ -52,7 +52,7 @@ FUZZ_EXPORT int __cdecl LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) std::stringstream stream(std::string((const char*)data, size)); ELFIO::elfio reader; - // Read the ELF file from the stream to determine it's length. + // Read the ELF file from the stream to determine its length. // This leaves the stream at the end of the ELF file. // All data after the ELF file is considered the data to be passed to the program. if (!reader.load(stream)) {