Fix message

This commit is contained in:
Eelco Dolstra 2014-11-17 01:00:39 +01:00 committed by Ludovic Courtès
parent b73de6e49b
commit a64744477d
1 changed files with 1 additions and 1 deletions

View File

@ -2336,7 +2336,7 @@ void DerivationGoal::registerOutputs()
if (buildMode == bmCheck) {
ValidPathInfo info = worker.store.queryPathInfo(path);
if (hash.first != info.hash)
throw Error(format("derivation `%2%' may not be deterministic: hash mismatch in output `%1%'") % drvPath % path);
throw Error(format("derivation `%1%' may not be deterministic: hash mismatch in output `%2%'") % drvPath % path);
continue;
}