aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/slice/percent_decode_fuzzer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/slice/percent_decode_fuzzer.cc')
-rw-r--r--test/core/slice/percent_decode_fuzzer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/slice/percent_decode_fuzzer.cc b/test/core/slice/percent_decode_fuzzer.cc
index 2aae335891..3603177c47 100644
--- a/test/core/slice/percent_decode_fuzzer.cc
+++ b/test/core/slice/percent_decode_fuzzer.cc
@@ -29,10 +29,10 @@
bool squelch = true;
bool leak_check = true;
-extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
struct grpc_memory_counters counters;
grpc_memory_counters_init();
- grpc_slice input = grpc_slice_from_copied_buffer((const char *)data, size);
+ grpc_slice input = grpc_slice_from_copied_buffer((const char*)data, size);
grpc_slice output;
if (grpc_strict_percent_decode_slice(
input, grpc_url_percent_encoding_unreserved_bytes, &output)) {