diff options
Diffstat (limited to 'Meta/Lagom/Fuzzers/FuzzASN1.cpp')
-rw-r--r-- | Meta/Lagom/Fuzzers/FuzzASN1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Fuzzers/FuzzASN1.cpp b/Meta/Lagom/Fuzzers/FuzzASN1.cpp index e1dddca082..e232f73a53 100644 --- a/Meta/Lagom/Fuzzers/FuzzASN1.cpp +++ b/Meta/Lagom/Fuzzers/FuzzASN1.cpp @@ -8,7 +8,7 @@ #include <stddef.h> #include <stdint.h> -extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) +extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size) { (void)TLS::Certificate::parse_asn1({ data, size }); |