From 1d6bed9e19277f6eef800360f3b3fa568da37730 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 21 Nov 2020 05:30:08 -0800 Subject: [PATCH] src: fix label indentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: https://github.com/nodejs/node/pull/36213 Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso Reviewed-By: Daijiro Wachi Reviewed-By: Franziska Hinkelmann --- src/node_buffer.cc | 2 +- src/quic/node_quic_session.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node_buffer.cc b/src/node_buffer.cc index 28ded0e3010116..21c78173329a8b 100644 --- a/src/node_buffer.cc +++ b/src/node_buffer.cc @@ -619,7 +619,7 @@ void Fill(const FunctionCallbackInfo& args) { nullptr); } - start_fill: +start_fill: if (str_length >= fill_length) return; diff --git a/src/quic/node_quic_session.cc b/src/quic/node_quic_session.cc index 371e3585dfeeed..fce6b658a43dec 100644 --- a/src/quic/node_quic_session.cc +++ b/src/quic/node_quic_session.cc @@ -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.