Skip to content
Snippets Groups Projects
Commit fdef23f8 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix includes

parent fdec85fc
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include <grpc/support/alloc.h> #include <grpc/support/alloc.h>
#include "src/core/client_config/uri_parser.h" #include "src/core/lib/client_config/uri_parser.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
char *s = gpr_malloc(size + 1); char *s = gpr_malloc(size + 1);
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include <grpc/support/alloc.h> #include <grpc/support/alloc.h>
#include "src/core/http/parser.h" #include "src/core/lib/http/parser.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
grpc_http_parser parser; grpc_http_parser parser;
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include <grpc/support/alloc.h> #include <grpc/support/alloc.h>
#include "src/core/json/json.h" #include "src/core/lib/json/json.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
char *s = gpr_malloc(size); char *s = gpr_malloc(size);
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include <grpc/grpc.h> #include <grpc/grpc.h>
#include <grpc/support/alloc.h> #include <grpc/support/alloc.h>
#include "src/core/transport/chttp2/hpack_parser.h" #include "src/core/lib/transport/chttp2/hpack_parser.h"
static void onhdr(void *ud, grpc_mdelem *md) { GRPC_MDELEM_UNREF(md); } static void onhdr(void *ud, grpc_mdelem *md) { GRPC_MDELEM_UNREF(md); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment