aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2015-12-02 11:28:19 -0800
committerGravatar yang-g <yangg@google.com>2015-12-02 11:28:19 -0800
commit49209763a1e5787ca1272c0d3ccd395f7fdc03b6 (patch)
tree458a0c5fd33889e997e335ca3ba7a9719014c626 /src/core
parente3c52e9d3c838287791f84bfd54a4deae5dd7657 (diff)
Fix unreachable macro
Diffstat (limited to 'src/core')
-rw-r--r--src/core/surface/call.c2
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,