aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2021-06-23 07:45:41 +0200
committerregnat <rg@regnat.ovh>2021-06-23 08:16:34 +0200
commited0e21a88d64d772304d079c39d76feca41c02d3 (patch)
tree4dd60eee65f226916635a10003e33bf0e76b6f5b /src/libstore/local-store.cc
parent7c96a76dd7da69fa527dea7110d1156c1c5fbe9e (diff)
Fix indentation
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc8
1 files 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<void>([&]() {
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) {