Skip to content

Commit cfc8ec1

Browse files
Trottdanielleadams
authored andcommitted
src: fix label indentation
In preparation for a cpplint version bump, move labels to be unindented. The one space indentation we use now is flagged in cpplint 1.5.2. Refs: https://softwareengineering.stackexchange.com/q/151806/26510 PR-URL: #36213 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]>
1 parent 095cef2 commit cfc8ec1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/node_buffer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ void Fill(const FunctionCallbackInfo<Value>& args) {
619619
nullptr);
620620
}
621621

622-
start_fill:
622+
start_fill:
623623

624624
if (str_length >= fill_length)
625625
return;

src/quic/node_quic_session.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,7 @@ bool QuicApplication::SendPendingData() {
14491449
}
14501450
return true;
14511451

1452-
congestion_limited:
1452+
congestion_limited:
14531453
// We are either congestion limited or done.
14541454
if (pos - packet->data()) {
14551455
// Some data was serialized into the packet. We need to send it.

0 commit comments

Comments
 (0)