diff options
author | yang-g <yangg@google.com> | 2015-12-02 11:28:19 -0800 |
---|---|---|
committer | yang-g <yangg@google.com> | 2015-12-02 11:28:19 -0800 |
commit | 49209763a1e5787ca1272c0d3ccd395f7fdc03b6 (patch) | |
tree | 458a0c5fd33889e997e335ca3ba7a9719014c626 /src/core | |
parent | e3c52e9d3c838287791f84bfd54a4deae5dd7657 (diff) |
Fix unreachable macro
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/surface/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c index 49a0c7e04e..4affafa585 100644 --- a/src/core/surface/call.c +++ b/src/core/surface/call.c @@ -912,7 +912,7 @@ static batch_control *allocate_batch_control(grpc_call *call) { return &call->active_batches[i]; } } - GPR_UNREACHABLE_CODE(return NULL); + return NULL; } static void finish_batch_completion(grpc_exec_ctx *exec_ctx, void *user_data, |