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

C API: remove unused argument

This commit is contained in:
José Luis Lafuente 2024-03-28 19:38:12 +01:00
parent 925a8fda6e
commit 061140fc8f
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A
3 changed files with 3 additions and 3 deletions

View file

@ -448,7 +448,7 @@ void nix_list_builder_free(ListBuilder * list_builder)
#endif
}
nix_err nix_make_list(nix_c_context * context, EvalState * s, ListBuilder * list_builder, Value * value)
nix_err nix_make_list(nix_c_context * context, ListBuilder * list_builder, Value * value)
{
if (context)
context->last_err_code = NIX_OK;