diff options
author | David G. Quintas <dgq@google.com> | 2015-06-09 15:30:04 -0700 |
---|---|---|
committer | David G. Quintas <dgq@google.com> | 2015-06-09 15:30:04 -0700 |
commit | a561ea66aeb460c6f33cfabff396d5ef2b748791 (patch) | |
tree | 9c3479a25d342e48c14f3bba4ec7ddd581d33f58 /src/core | |
parent | 3f192f73919372d707ad7b2c67f9ccd9726afb4a (diff) | |
parent | a7c106265fcc30a25af36528980fe0ebf1d38210 (diff) |
Merge pull request #1833 from zayoo/master
Fix minor bug GRPC_TIMER_END before end of function
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 93b3a54ea4..cead5e08dc 100644 --- a/src/core/surface/call.c +++ b/src/core/surface/call.c @@ -759,7 +759,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, |