aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Yu Zhou <yuzhouyuzhou@google.com>2015-05-29 16:22:26 -0700
committerGravatar Yu Zhou <yuzhouyuzhou@google.com>2015-05-29 16:22:26 -0700
commita7c106265fcc30a25af36528980fe0ebf1d38210 (patch)
treebe0dd41b1d469f760a9bad5cde85117e72748b71 /src/core
parent5242c1e22a18f09f25737fd67732805cf55be751 (diff)
Fix minor bug call GRPC_TIMER_END before return
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 4d2ba7cd7d..903daf90a7 100644
--- a/src/core/surface/call.c
+++ b/src/core/surface/call.c
@@ -752,7 +752,7 @@ static void call_on_done_recv(void *pc, int success) {
unlock(call);
GRPC_CALL_INTERNAL_UNREF(call, "receiving", 0);
- GRPC_TIMER_BEGIN(GRPC_PTAG_CALL_ON_DONE_RECV, 0);
+ GRPC_TIMER_END(GRPC_PTAG_CALL_ON_DONE_RECV, 0);
}
static int prepare_application_metadata(grpc_call *call, size_t count,