diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-03 10:40:11 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-03 10:40:11 -0700 |
commit | e434d1d60bebf3d90790e397223537c96761cf05 (patch) | |
tree | 8898b9c85de65c69ba20769f2a38675d7e5552a5 /src/core | |
parent | 03b605ceeabe0d893de9d5ac4d76ff8b2567c5ee (diff) |
s/NULL/false
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/channel/http_client_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/channel/http_client_filter.c b/src/core/lib/channel/http_client_filter.c index ece6e6214f..4e47c5c658 100644 --- a/src/core/lib/channel/http_client_filter.c +++ b/src/core/lib/channel/http_client_filter.c @@ -348,7 +348,7 @@ static grpc_error *hc_mutate_op(grpc_exec_ctx *exec_ctx, calld->on_complete = op->on_complete; op->on_complete = &calld->hc_on_complete; - op->send_message = NULL; + op->send_message = false; grpc_slice_unref_internal(exec_ctx, path_with_query_slice); } else { /* Not all data is available. Fall back to POST. */ |