diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 5cb6fc3cf..2af6a6787 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -1330,7 +1330,7 @@ Path EvalState::coerceToPath(const Pos & pos, Value & v, PathSet & context) { string path = coerceToString(pos, v, context, false, false); if (path == "" || path[0] != '/') - throwEvalError("string ‘%1%’ doesn't represent an absolute path, at %1%", path, pos); + throwEvalError("string ‘%1%’ doesn't represent an absolute path, at %2%", path, pos); return path; }