Skip to content

Commit 8aa7f97

Browse files
committed
Fix casing in test script
1 parent 0c88684 commit 8aa7f97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fuzz_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
#include "../tinyexpr.h"
99

10-
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size)
10+
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
1111
{
1212
te_parser tep;
13-
tep.compile(std::string(reinterpret_cast<const char*>(Data), Size).c_str());
13+
tep.compile(std::string(reinterpret_cast<const char*>(data), size).c_str());
1414
return 0;
1515
}

0 commit comments

Comments
 (0)