diff options
author | ncteisen <ncteisen@gmail.com> | 2017-08-28 16:46:07 -0700 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2017-08-28 16:46:07 -0700 |
commit | b489e79e0aad28dea6e6922d9d640015abb3a14f (patch) | |
tree | 0a98c241cb649bfc73d3ec992a8f3b31d2a7fed3 | |
parent | 2d060b6bd562b24f30fcf545ac0dac76fecd8b86 (diff) |
Remove extraneous paren
-rw-r--r-- | src/core/lib/profiling/timers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/profiling/timers.h b/src/core/lib/profiling/timers.h index 4d1437f606..7f02b4bf84 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); } |