C API: use bool argument consistently

This commit is contained in:
José Luis Lafuente 2024-01-11 22:42:44 +01:00 committed by José Luis Lafuente
parent d5ec1d0617
commit 415583a500
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A

View file

@ -136,7 +136,7 @@ typedef struct NixCExternalValueDesc
* or setting it to the empty string, will make the conversion throw an error. * or setting it to the empty string, will make the conversion throw an error.
*/ */
void (*printValueAsJSON)( void (*printValueAsJSON)(
void * self, EvalState *, int strict, nix_string_context * c, bool copyToStore, nix_string_return * res); void * self, EvalState *, bool strict, nix_string_context * c, bool copyToStore, nix_string_return * res);
/** /**
* @brief Convert the external value to XML * @brief Convert the external value to XML
* *