From 75d6842c4087cd9f204b8beafaa88f1fac7cf999 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sat, 26 Jun 2010 19:43:51 +0200 Subject: s4:winbind/wb_samba3_protocol.c - add cast to suppress warnings on Solaris 10 cc --- source4/winbind/wb_samba3_protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/winbind') diff --git a/source4/winbind/wb_samba3_protocol.c b/source4/winbind/wb_samba3_protocol.c index 8d0127ba04..8dbb0c84cf 100644 --- a/source4/winbind/wb_samba3_protocol.c +++ b/source4/winbind/wb_samba3_protocol.c @@ -263,7 +263,7 @@ NTSTATUS wbsrv_samba3_send_reply(struct wbsrv_samba3_call *call) status = wbsrv_samba3_push_reply(call); NT_STATUS_NOT_OK_RETURN(status); - call->out_iov[0].iov_base = call->out.data; + call->out_iov[0].iov_base = (char *) call->out.data; call->out_iov[0].iov_len = call->out.length; subreq = tstream_writev_queue_send(call, -- cgit