aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-02-09 15:23:12 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-02-09 15:23:12 -0800
commitb1b2854d3a2beffa8e33d7847bf6072636a38f46 (patch)
treeee74572ad18a8191d5b52b12495453de8b1428ad
parentf6723896f0370ed1e04d8fff7e50750a574c0093 (diff)
Fix non-debug
-rw-r--r--src/core/lib/iomgr/combiner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/combiner.h b/src/core/lib/iomgr/combiner.h
index f1fa941d64..c7aa086617 100644
--- a/src/core/lib/iomgr/combiner.h
+++ b/src/core/lib/iomgr/combiner.h
@@ -59,8 +59,8 @@ grpc_combiner *grpc_combiner_create(grpc_workqueue *optional_workqueue);
grpc_combiner_unref((exec_ctx), (combiner), __FILE__, __LINE__, (reason))
#else
#define GRPC_COMBINER_DEBUG_ARGS
-#define GRPC_COMBINER_REF(combiner) grpc_combiner_ref((combiner))
-#define GRPC_COMBINER_UNREF(exec_ctx, combiner) \
+#define GRPC_COMBINER_REF(combiner, reason) grpc_combiner_ref((combiner))
+#define GRPC_COMBINER_UNREF(exec_ctx, combiner, reason) \
grpc_combiner_unref((exec_ctx), (combiner))
#endif