aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util/debugger_macros.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/util/debugger_macros.cc')
-rw-r--r--test/core/util/debugger_macros.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/core/util/debugger_macros.cc b/test/core/util/debugger_macros.cc
index 72384f2dd7..5985fcfb83 100644
--- a/test/core/util/debugger_macros.cc
+++ b/test/core/util/debugger_macros.cc
@@ -31,12 +31,12 @@
extern "C" void grpc_summon_debugger_macros() {}
-grpc_stream *grpc_transport_stream_from_call(grpc_call *call) {
- grpc_call_stack *cs = grpc_call_get_call_stack(call);
+grpc_stream* grpc_transport_stream_from_call(grpc_call* call) {
+ grpc_call_stack* cs = grpc_call_get_call_stack(call);
for (;;) {
- grpc_call_element *el = grpc_call_stack_element(cs, cs->count - 1);
+ grpc_call_element* el = grpc_call_stack_element(cs, cs->count - 1);
if (el->filter == &grpc_client_channel_filter) {
- grpc_subchannel_call *scc = grpc_client_channel_get_subchannel_call(el);
+ grpc_subchannel_call* scc = grpc_client_channel_get_subchannel_call(el);
if (scc == NULL) {
fprintf(stderr, "No subchannel-call");
return NULL;
@@ -51,6 +51,6 @@ grpc_stream *grpc_transport_stream_from_call(grpc_call *call) {
}
}
-grpc_chttp2_stream *grpc_chttp2_stream_from_call(grpc_call *call) {
- return (grpc_chttp2_stream *)grpc_transport_stream_from_call(call);
+grpc_chttp2_stream* grpc_chttp2_stream_from_call(grpc_call* call) {
+ return (grpc_chttp2_stream*)grpc_transport_stream_from_call(call);
}