diff options
author | ncteisen <ncteisen@gmail.com> | 2017-02-07 16:22:14 -0800 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2017-02-07 16:22:14 -0800 |
commit | e128e837f0f55c93334a97517e99a03cc2699da2 (patch) | |
tree | 1d789dedf549e18541e02f159076c80534bcda8b /src | |
parent | 0a8e32ab7f9666c45fb5651cec10f61dc538a79d (diff) |
clang fmt
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/frame_rst_stream.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/ext/transport/chttp2/transport/frame_rst_stream.c b/src/core/ext/transport/chttp2/transport/frame_rst_stream.c index 2e93ae2b85..cb017e75f0 100644 --- a/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +++ b/src/core/ext/transport/chttp2/transport/frame_rst_stream.c @@ -110,11 +110,10 @@ grpc_error *grpc_chttp2_rst_stream_parser_parse(grpc_exec_ctx *exec_ctx, grpc_error *error = GRPC_ERROR_NONE; if (reason != GRPC_HTTP2_NO_ERROR || s->header_frames_received < 2) { char *message; - gpr_asprintf(&message, "Received RST_STREAM with error code %d", - reason); + gpr_asprintf(&message, "Received RST_STREAM with error code %d", reason); error = grpc_error_set_int( - grpc_error_set_str(GRPC_ERROR_CREATE("RST_STREAM"), - GRPC_ERROR_STR_GRPC_MESSAGE, message), + grpc_error_set_str(GRPC_ERROR_CREATE("RST_STREAM"), + GRPC_ERROR_STR_GRPC_MESSAGE, message), GRPC_ERROR_INT_HTTP2_ERROR, (intptr_t)reason); gpr_free(message); } |