summaryrefslogtreecommitdiff
path: root/Meta/Lagom/Fuzzers/FuzzIMAPParser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Meta/Lagom/Fuzzers/FuzzIMAPParser.cpp')
-rw-r--r--Meta/Lagom/Fuzzers/FuzzIMAPParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Fuzzers/FuzzIMAPParser.cpp b/Meta/Lagom/Fuzzers/FuzzIMAPParser.cpp
index 32e5a1e420..a5d31df0fa 100644
--- a/Meta/Lagom/Fuzzers/FuzzIMAPParser.cpp
+++ b/Meta/Lagom/Fuzzers/FuzzIMAPParser.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)
{
auto parser = IMAP::Parser();
parser.parse(ByteBuffer::copy(data, size).release_value(), true);