summaryrefslogtreecommitdiff
path: root/source3/rpc_server
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-03-01 13:58:46 -0800
committerTim Prouty <tprouty@samba.org>2009-03-01 16:40:17 -0800
commit9b0df441e1bd836c433e11582650fa0171791485 (patch)
treed801f31cb05dcbfa88964c4697973b1c6680e5ee /source3/rpc_server
parent664268a2877dc49a84eb140e837e01f08979c471 (diff)
downloadsamba-9b0df441e1bd836c433e11582650fa0171791485.tar.gz
samba-9b0df441e1bd836c433e11582650fa0171791485.tar.bz2
samba-9b0df441e1bd836c433e11582650fa0171791485.zip
s3: Fix incompatible type warnings
Diffstat (limited to 'source3/rpc_server')
-rw-r--r--source3/rpc_server/srv_eventlog_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_eventlog_lib.c b/source3/rpc_server/srv_eventlog_lib.c
index edd1cfacb8..f83c4fc3b8 100644
--- a/source3/rpc_server/srv_eventlog_lib.c
+++ b/source3/rpc_server/srv_eventlog_lib.c
@@ -936,7 +936,7 @@ NTSTATUS evlog_tdb_entry_to_evt_entry(TALLOC_CTX *mem_ctx,
size_t len;
if (!convert_string_talloc(mem_ctx, CH_UTF16, CH_UNIX,
t->sid.data, t->sid.length,
- &sid_str, &len, false)) {
+ (void **)&sid_str, &len, false)) {
return NT_STATUS_INVALID_SID;
}
if (len > 0) {