From c1a18f543e8f94568d085f88c66f0312c9d362d6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 6 Jul 2004 11:21:34 +0000 Subject: [PATCH] * Fixed format string error. --- src/libstore/normalise.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/normalise.cc b/src/libstore/normalise.cc index c392cfb2fb..ae743c136f 100644 --- a/src/libstore/normalise.cc +++ b/src/libstore/normalise.cc @@ -1038,7 +1038,7 @@ void NormalisationGoal::createClosure() Path path = *i; if (!pathExists(path)) { throw BuildError( - format("builder for `%1%' failed to produce output path `%1%'") + format("builder for `%1%' failed to produce output path `%2%'") % nePath % path); } nf.closure.roots.insert(path);