From 375c1c2a4efee962aa0f97e4b312ffb14c12d7e9 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 21 Aug 2020 00:51:55 +0100 Subject: style(tvix): Move a comment to fix a formatting issue Change-Id: Idd490b978c07d1b1113ee97b5d19719a27436fba Reviewed-on: https://cl.tvl.fyi/c/depot/+/1822 Tested-by: BuildkiteCI Reviewed-by: glittershark --- third_party/nix/src/libstore/remote-store.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'third_party/nix/src') diff --git a/third_party/nix/src/libstore/remote-store.cc b/third_party/nix/src/libstore/remote-store.cc index e99c442c3d67..c4fd856a2cb0 100644 --- a/third_party/nix/src/libstore/remote-store.cc +++ b/third_party/nix/src/libstore/remote-store.cc @@ -469,10 +469,9 @@ absl::Status RemoteStore::buildPaths(std::ostream& /* log_sink */, conn->to << drvPaths; if (GET_PROTOCOL_MINOR(conn->daemonVersion) >= 15) { conn->to << build_mode; - } else - /* Old daemons did not take a 'buildMode' parameter, so we - need to validate it here on the client side. */ - if (build_mode != bmNormal) { + } else if (build_mode != bmNormal) { + /* Old daemons did not take a 'buildMode' parameter, so we + need to validate it here on the client side. */ return absl::Status( absl::StatusCode::kInvalidArgument, "repairing or checking is not supported when building through the " -- cgit 1.4.1