aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/primops/fromTOML.cc
diff options
context:
space:
mode:
authorGuillaume Maudoux <guillaume.maudoux@tweag.io>2022-03-07 11:33:03 +0100
committerGuillaume Maudoux <guillaume.maudoux@tweag.io>2022-03-07 11:33:03 +0100
commit13c4dc65327c9654c47e6d80c0f4e1797b999f97 (patch)
tree7ec88137a4bdc971522920a27c046082e32c1d2d /src/libexpr/primops/fromTOML.cc
parent1b5a8db148dd4403c64bc058ce1a4a5e46d52031 (diff)
more fixes
Diffstat (limited to 'src/libexpr/primops/fromTOML.cc')
-rw-r--r--src/libexpr/primops/fromTOML.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops/fromTOML.cc b/src/libexpr/primops/fromTOML.cc
index 6bfd8e285..2a038bb20 100644
--- a/src/libexpr/primops/fromTOML.cc
+++ b/src/libexpr/primops/fromTOML.cc
@@ -7,7 +7,7 @@ namespace nix {
static void prim_fromTOML(EvalState & state, const Pos & pos, Value * * args, Value & val)
{
- auto toml = state.forceStringNoCtx(*args[0], pos, "While evaluating the argument passed to builtins.fromTOML");
+ auto toml = state.forceStringNoCtx(*args[0], pos, "While evaluating the argument passed to builtins.fromTOML: ");
std::istringstream tomlStream(std::string{toml});