diff options
author | Tim Prouty <tprouty@samba.org> | 2009-03-01 13:58:46 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-03-01 16:40:17 -0800 |
commit | 9b0df441e1bd836c433e11582650fa0171791485 (patch) | |
tree | d801f31cb05dcbfa88964c4697973b1c6680e5ee /source3/libgpo | |
parent | 664268a2877dc49a84eb140e837e01f08979c471 (diff) | |
download | samba-9b0df441e1bd836c433e11582650fa0171791485.tar.gz samba-9b0df441e1bd836c433e11582650fa0171791485.tar.xz samba-9b0df441e1bd836c433e11582650fa0171791485.zip |
s3: Fix incompatible type warnings
Diffstat (limited to 'source3/libgpo')
-rw-r--r-- | source3/libgpo/gpo_ini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libgpo/gpo_ini.c b/source3/libgpo/gpo_ini.c index aa8f7c77700..edca85530bf 100644 --- a/source3/libgpo/gpo_ini.c +++ b/source3/libgpo/gpo_ini.c @@ -83,7 +83,7 @@ static NTSTATUS convert_file_from_ucs2(TALLOC_CTX *mem_ctx, } if (!convert_string_talloc(mem_ctx, CH_UTF16LE, CH_UNIX, data_in, n, - &data_out, &converted_size, False)) + (void **)&data_out, &converted_size, False)) { status = NT_STATUS_INVALID_BUFFER_SIZE; goto out; |