diff options
author | Craig Tiller <ctiller@google.com> | 2017-05-04 08:11:17 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-05-04 08:11:17 -0700 |
commit | 3b654361537dee42dba9855c7d2501302c272c7a (patch) | |
tree | b687bfcc449e493058e1f4c3d825ab57961db807 /src/core/lib/http | |
parent | 9f276e19a8ea1cbf5d445ed44635ebb6142c62ec (diff) |
Add initializers for all tracers
Diffstat (limited to 'src/core/lib/http')
-rw-r--r-- | src/core/lib/http/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/http/parser.c b/src/core/lib/http/parser.c index b8883f5953..a4357978e4 100644 --- a/src/core/lib/http/parser.c +++ b/src/core/lib/http/parser.c @@ -40,7 +40,7 @@ #include <grpc/support/log.h> #include <grpc/support/useful.h> -grpc_tracer_flag grpc_http1_trace; +grpc_tracer_flag grpc_http1_trace = GRPC_TRACER_INITIALIZER(false); static char *buf2str(void *buffer, size_t length) { char *out = gpr_malloc(length + 1); |