diff options
author | Guillaume Maudoux <guillaume.maudoux@tweag.io> | 2022-03-07 11:33:03 +0100 |
---|---|---|
committer | Guillaume Maudoux <guillaume.maudoux@tweag.io> | 2022-03-07 11:33:03 +0100 |
commit | 13c4dc65327c9654c47e6d80c0f4e1797b999f97 (patch) | |
tree | 7ec88137a4bdc971522920a27c046082e32c1d2d /src/libexpr/attr-path.cc | |
parent | 1b5a8db148dd4403c64bc058ce1a4a5e46d52031 (diff) |
more fixes
Diffstat (limited to 'src/libexpr/attr-path.cc')
-rw-r--r-- | src/libexpr/attr-path.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/attr-path.cc b/src/libexpr/attr-path.cc index 63ee8b1ae..930400bd0 100644 --- a/src/libexpr/attr-path.cc +++ b/src/libexpr/attr-path.cc @@ -112,7 +112,7 @@ Pos findPackageFilename(EvalState & state, Value & v, std::string what) // FIXME: is it possible to extract the Pos object instead of doing this // toString + parsing? - auto pos = state.forceString(*v2, noPos, "While evaluating the meta.position attribute of a derivation"); + auto pos = state.forceString(*v2, noPos, "While evaluating the meta.position attribute of a derivation: "); auto colon = pos.rfind(':'); if (colon == std::string::npos) |