diff options
Diffstat (limited to 'source4/lib/registry')
-rw-r--r-- | source4/lib/registry/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/registry/util.c b/source4/lib/registry/util.c index 9ccf73790c..56d215cab7 100644 --- a/source4/lib/registry/util.c +++ b/source4/lib/registry/util.c @@ -238,7 +238,7 @@ WERROR reg_key_del_abs(TALLOC_CTX *mem_ctx, struct registry_context *ctx, const char *path) { struct registry_key *parent; - const char *n; + char *n; WERROR error; if (!strchr(path, '\\')) { @@ -262,7 +262,7 @@ WERROR reg_key_add_abs(TALLOC_CTX *mem_ctx, struct registry_context *ctx, struct registry_key **result) { struct registry_key *parent; - const char *n; + char *n; WERROR error; *result = NULL; |