diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-11-04 13:29:39 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-11-04 13:29:39 +0100 |
commit | 6259fd7ea6ac331d1037a150b07c01125e80ed8e (patch) | |
tree | 9e80715114dab6887a9f78510810170bcf533ed8 | |
parent | b95faccf03e5213b6087626ab8d46e0704aad6b5 (diff) |
Fix indentation
-rw-r--r-- | src/nix-store/nix-store.cc | 4 |
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; } |