about summary refs log tree commit diff
path: root/third_party/nix/src/nix/hash.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/nix/hash.cc')
-rw-r--r--third_party/nix/src/nix/hash.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/nix/src/nix/hash.cc b/third_party/nix/src/nix/hash.cc
index e3278ea77a..77be77cfcd 100644
--- a/third_party/nix/src/nix/hash.cc
+++ b/third_party/nix/src/nix/hash.cc
@@ -36,7 +36,9 @@ struct CmdHash : Command {
   void run() override {
     for (auto path : paths) {
       Hash h = mode == mFile ? hashFile(ht, path) : hashPath(ht, path).first;
-      if (truncate && h.hashSize > 20) h = compressHash(h, 20);
+      if (truncate && h.hashSize > 20) {
+        h = compressHash(h, 20);
+      }
       std::cout << format("%1%\n") % h.to_string(base, base == SRI);
     }
   }