Skip to content

Commit 6875095

Browse files
committed
quic: fix lint
1 parent d1288af commit 6875095

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

src/quic/http3.cc

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -503,11 +503,12 @@ class Http3ApplicationImpl final : public Session::Application {
503503
code = error.code();
504504
}
505505

506-
int rv = nghttp3_conn_close_stream2(*this,
507-
NGHTTP3_STREAM_CLOSE_FLAG_RX_APP_ERROR_CODE_SET,
508-
stream->id(),
509-
code,
510-
0);
506+
int rv = nghttp3_conn_close_stream2(
507+
*this,
508+
NGHTTP3_STREAM_CLOSE_FLAG_RX_APP_ERROR_CODE_SET,
509+
stream->id(),
510+
code,
511+
0);
511512
// If the call is successful, Http3Application::OnStreamClose callback will
512513
// be invoked when the stream is ready to be closed. We'll handle destroying
513514
// the actual Stream object there.

0 commit comments

Comments
 (0)