summaryrefslogtreecommitdiff
path: root/source4/lib/registry/registry.h
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2007-12-14 10:38:26 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:50:16 +0100
commit45015eda2421253f858f0a4500a57c2855f9686c (patch)
tree004ff3b15d62a63c5d4dc4a5f4045a846e4c548b /source4/lib/registry/registry.h
parent4a33ca21943f72ddde4b22ddd6591c2ccdbb657b (diff)
downloadsamba-45015eda2421253f858f0a4500a57c2855f9686c.tar.gz
samba-45015eda2421253f858f0a4500a57c2855f9686c.tar.bz2
samba-45015eda2421253f858f0a4500a57c2855f9686c.zip
r26451: Janitorial: fix warnings in lib/registry/
This does not fix the discarded qualifier warnings in tests, as the test data is currently passed as const. Jelmer wants to provide a test function that passes non-const test data, thus allowing for a cleaner way to fix those warnings. (This used to be commit 46dfa63d4f7381c5c6ce3f4b8b0bd9aa9e16950c)
Diffstat (limited to 'source4/lib/registry/registry.h')
-rw-r--r--source4/lib/registry/registry.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/registry/registry.h b/source4/lib/registry/registry.h
index edd6c6713f..a02acbea1e 100644
--- a/source4/lib/registry/registry.h
+++ b/source4/lib/registry/registry.h
@@ -94,7 +94,7 @@ struct registry_operations {
WERROR (*flush_key) (struct registry_key *key);
- WERROR (*get_predefined_key) (const struct registry_context *ctx,
+ WERROR (*get_predefined_key) (struct registry_context *ctx,
uint32_t key_id,
struct registry_key **key);
@@ -195,7 +195,7 @@ const char *reg_get_predef_name(uint32_t hkey);
WERROR reg_get_predefined_key_by_name(struct registry_context *ctx,
const char *name,
struct registry_key **key);
-WERROR reg_get_predefined_key(const struct registry_context *ctx,
+WERROR reg_get_predefined_key(struct registry_context *ctx,
uint32_t hkey,
struct registry_key **key);