aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store/nix-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-11-04 13:29:39 +0100
committerEelco Dolstra <edolstra@gmail.com>2022-11-04 13:29:39 +0100
commit6259fd7ea6ac331d1037a150b07c01125e80ed8e (patch)
tree9e80715114dab6887a9f78510810170bcf533ed8 /src/nix-store/nix-store.cc
parentb95faccf03e5213b6087626ab8d46e0704aad6b5 (diff)
Fix indentation
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r--src/nix-store/nix-store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index eb65e7dde..b59a6d026 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -745,8 +745,8 @@ static void opVerifyPath(Strings opFlags, Strings opArgs)
auto current = sink.finish();
if (current.first != info->narHash) {
printError("path '%s' was modified! expected hash '%s', got '%s'",
- store->printStorePath(path),
- info->narHash.to_string(Base32, true),
+ store->printStorePath(path),
+ info->narHash.to_string(Base32, true),
current.first.to_string(Base32, true));
status = 1;
}