From ed0e21a88d64d772304d079c39d76feca41c02d3 Mon Sep 17 00:00:00 2001 From: regnat Date: Wed, 23 Jun 2021 07:45:41 +0200 Subject: [PATCH] Fix indentation --- src/libstore/local-store.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index b56df735c..348d964ca 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -714,10 +714,10 @@ void LocalStore::registerDrvOutput(const Realisation & info) retrySQLite([&]() { auto state(_state.lock()); state->stmts->RegisterRealisedOutput.use() - (info.id.strHash()) - (info.id.outputName) - (printStorePath(info.outPath)) - (concatStringsSep(" ", info.signatures)) + (info.id.strHash()) + (info.id.outputName) + (printStorePath(info.outPath)) + (concatStringsSep(" ", info.signatures)) .exec(); uint64_t myId = state->db.getLastInsertedRowId(); for (auto & [outputId, _] : info.dependentRealisations) {