From 456f3251d2af6e7f4e21f317e217c035d9d6f967 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 10 May 2005 14:21:46 +0000 Subject: [PATCH] * Typo. --- src/libstore/build.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 117029fb0a..ec7c906835 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1139,7 +1139,7 @@ void DerivationGoal::computeClosure() Hash h2 = recursive ? hashPath(ht, path) : hashFile(ht, path); if (h != h2) throw Error( - format("output path `%1% should have %2% hash `%3%', instead has `%4%'") + format("output path `%1%' should have %2% hash `%3%', instead has `%4%'") % path % algo % printHash(h) % printHash(h2)); }