1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

s3:registry: use TALLOC_CTX * instead of const void * in reg_import_adapter()

This commit is contained in:
Michael Adam 2012-06-27 08:20:31 +02:00
parent c4be17f804
commit 7bc1172c5f
2 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ static int nop(void* data)
}
struct reg_parse_callback* reg_import_adapter(const void* talloc_ctx,
struct reg_parse_callback *reg_import_adapter(TALLOC_CTX *talloc_ctx,
struct reg_import_callback cb)
{
struct reg_parse_callback* ret;

View File

@ -194,6 +194,6 @@ struct reg_import_callback {
*
* @return a talloc'ed reg_import object, NULL on error
*/
struct reg_parse_callback* reg_import_adapter(const void* talloc_ctx,
struct reg_parse_callback* reg_import_adapter(TALLOC_CTX *talloc_ctx,
struct reg_import_callback cb);
#endif