diff options
author | Volker Lendecke <vl@samba.org> | 2009-04-23 14:24:16 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-04-23 14:35:50 +0200 |
commit | 2146310fb75b743d383aeeae3ac121e37903f229 (patch) | |
tree | 5cdf7afcfc30dd78640bc8b5b311e0b5cbbc3d79 /source3/lib/eventlog | |
parent | b8cd1cff2dfad726cf6dab368dfcc31a29952889 (diff) | |
download | samba-2146310fb75b743d383aeeae3ac121e37903f229.tar.gz samba-2146310fb75b743d383aeeae3ac121e37903f229.tar.bz2 samba-2146310fb75b743d383aeeae3ac121e37903f229.zip |
Fix a couple of warnings
Diffstat (limited to 'source3/lib/eventlog')
-rw-r--r-- | source3/lib/eventlog/eventlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/eventlog/eventlog.c b/source3/lib/eventlog/eventlog.c index 11cb28a120..42b2a06ce3 100644 --- a/source3/lib/eventlog/eventlog.c +++ b/source3/lib/eventlog/eventlog.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, - (void **)&sid_str, &len, false)) { + (void *)&sid_str, &len, false)) { return NT_STATUS_INVALID_SID; } if (len > 0) { |