Skip to content

Commit

Permalink
src: fix label indentation
Browse files Browse the repository at this point in the history
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 <rlau@redhat.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
  • Loading branch information
Trott authored and danielleadams committed Dec 7, 2020
1 parent 095cef2 commit cfc8ec1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/node_buffer.cc
Expand Up @@ -619,7 +619,7 @@ void Fill(const FunctionCallbackInfo<Value>& args) {
nullptr);
}

start_fill:
start_fill:

if (str_length >= fill_length)
return;
Expand Down
2 changes: 1 addition & 1 deletion src/quic/node_quic_session.cc
Expand Up @@ -1449,7 +1449,7 @@ bool QuicApplication::SendPendingData() {
}
return true;

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

0 comments on commit cfc8ec1

Please sign in to comment.