From b489e79e0aad28dea6e6922d9d640015abb3a14f Mon Sep 17 00:00:00 2001 From: ncteisen Date: Mon, 28 Aug 2017 16:46:07 -0700 Subject: [PATCH] Remove extraneous paren --- src/core/lib/profiling/timers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lib/profiling/timers.h b/src/core/lib/profiling/timers.h index 4d1437f6069..7f02b4bf849 100644 --- a/src/core/lib/profiling/timers.h +++ b/src/core/lib/profiling/timers.h @@ -94,7 +94,7 @@ class ProfileScope { public: ProfileScope(const char *desc, bool important, const char *file, int line) : desc_(desc) { - gpr_timer_begin((desc_, important ? 1 : 0, file, line); + gpr_timer_begin(desc_, important ? 1 : 0, file, line); } ~ProfileScope() { gpr_timer_end(desc_, 0, "n/a", 0); }