summaryrefslogtreecommitdiff
path: root/source3/lib/charcnv.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-07-13 11:36:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:28:35 -0500
commit6eca5f5042c95f4532aac46e136a9bff5c45cbc2 (patch)
treefd48ea443cb02b52b968bf37d8c2bc32a1a5d5f0 /source3/lib/charcnv.c
parent894a02ef4d53010c59cf7304f935288c99356874 (diff)
downloadsamba-6eca5f5042c95f4532aac46e136a9bff5c45cbc2.tar.gz
samba-6eca5f5042c95f4532aac46e136a9bff5c45cbc2.tar.bz2
samba-6eca5f5042c95f4532aac46e136a9bff5c45cbc2.zip
r23865: Fix a type-punned error
(This used to be commit a40d3a566af88464fc6afd2c6e6e8b6e3a98aac2)
Diffstat (limited to 'source3/lib/charcnv.c')
-rw-r--r--source3/lib/charcnv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c
index b71e15f44d..30941dd7e8 100644
--- a/source3/lib/charcnv.c
+++ b/source3/lib/charcnv.c
@@ -1383,7 +1383,7 @@ static size_t pull_ucs2_base_talloc(TALLOC_CTX *ctx,
CH_UNIX,
src,
src_len,
- (void **)&dest,
+ (void *)&dest,
True);
if (dest_len == (size_t)-1) {
return 0;