diff options
author | Craig Tiller <ctiller@google.com> | 2017-10-18 14:48:14 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-10-18 14:48:14 -0700 |
commit | 694580faee3a3bb91f9922a1d04125aa48f50bd5 (patch) | |
tree | 304dd22a13e1140cb263a84c5f2836f5e907ea73 /src/core/lib/http | |
parent | d3d709a10fe2d3d9c2f2115bd4adad33e5a1ad0c (diff) |
Better name
Diffstat (limited to 'src/core/lib/http')
-rw-r--r-- | src/core/lib/http/parser.cc | 2 | ||||
-rw-r--r-- | src/core/lib/http/parser.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/http/parser.cc b/src/core/lib/http/parser.cc index f272df11dd..720e8e85ee 100644 --- a/src/core/lib/http/parser.cc +++ b/src/core/lib/http/parser.cc @@ -25,7 +25,7 @@ #include <grpc/support/log.h> #include <grpc/support/useful.h> -grpc_core::Tracer grpc_http1_trace(false, "http1"); +grpc_core::TraceFlag grpc_http1_trace(false, "http1"); static char *buf2str(void *buffer, size_t length) { char *out = (char *)gpr_malloc(length + 1); diff --git a/src/core/lib/http/parser.h b/src/core/lib/http/parser.h index b6efeda28a..044f159f73 100644 --- a/src/core/lib/http/parser.h +++ b/src/core/lib/http/parser.h @@ -111,7 +111,7 @@ grpc_error *grpc_http_parser_eof(grpc_http_parser *parser); void grpc_http_request_destroy(grpc_http_request *request); void grpc_http_response_destroy(grpc_http_response *response); -extern grpc_core::Tracer grpc_http1_trace; +extern grpc_core::TraceFlag grpc_http1_trace; #ifdef __cplusplus } |