From 29c623e5cb4c369d082097a73bcf9f5e9c3d6723 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 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_buffer.cc b/src/node_buffer.cc index 3a943cc6369deb..4e44f0b47f0c03 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;