Skip to content

Commit c0643f3

Browse files
committed
quic: fix lint
1 parent c2a3aea commit c0643f3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/quic/application.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,8 @@ void Session::Application::SendPendingData() {
540540
// We call Application::ResumeStream directly (not Session::ResumeStream)
541541
// to avoid creating a SendPendingDataScope — we're already inside
542542
// SendPendingData and re-entering would just hit nwrite=0 again.
543-
if (nwrite == 0 && (stream_data.id >= 0 || !session_->HasPendingDatagrams())) {
543+
if (nwrite == 0 &&
544+
(stream_data.id >= 0 || !session_->HasPendingDatagrams())) {
544545
Debug(session_, "Congestion or not our turn to send");
545546
if (stream_data.id >= 0 && (stream_data.count > 0 || stream_data.fin)) {
546547
ResumeStream(stream_data.id);

0 commit comments

Comments
 (0)