1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 00:11:17 +02:00

add missing c api parameter names to documentation

This commit is contained in:
Philipp Zander 2024-04-30 18:11:01 +02:00
parent 303268bb71
commit 359043ed0d
2 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ nix_err nix_init_plugins(nix_c_context * context);
* @return a Store pointer, NULL in case of errors
* @see nix_store_free
*/
Store * nix_store_open(nix_c_context *, const char * uri, const char *** params);
Store * nix_store_open(nix_c_context * context, const char * uri, const char *** params);
/**
* @brief Deallocate a nix store and free any resources if not also held by other Store instances.