1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 14:51:16 +02:00

more fixes

This commit is contained in:
Guillaume Maudoux 2022-03-07 11:33:03 +01:00
parent 1b5a8db148
commit 13c4dc6532
19 changed files with 239 additions and 231 deletions

View file

@ -63,7 +63,7 @@ inline void EvalState::forceAttrs(Value & v, Callable getPos, const std::string
{
forceValue(v, getPos);
if (v.type() != nAttrs)
throwTypeError(getPos(), "%2%: value is %1% while a set was expected", v, errorCtx);
throwTypeError(getPos(), "%2%value is %1% while a set was expected", v, errorCtx);
}
@ -71,7 +71,7 @@ inline void EvalState::forceList(Value & v, const Pos & pos, const std::string &
{
forceValue(v, pos);
if (!v.isList())
throwTypeError(pos, "%2%: value is %1% while a list was expected", v, errorCtx);
throwTypeError(pos, "%2%value is %1% while a list was expected", v, errorCtx);
}
/* Note: Various places expect the allocated memory to be zeroed. */