From ace43d4ccd5e225bbefec7e9f3a3f64e07e3c99a Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 10 Sep 2010 22:22:14 +0200 Subject: s4:libcli/wrepl/winsrepl.c - add more "char *" casts in order to suppress Solaris warnings --- source4/libcli/wrepl/winsrepl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/libcli/wrepl/winsrepl.c b/source4/libcli/wrepl/winsrepl.c index 032be8f79f..83da21700c 100644 --- a/source4/libcli/wrepl/winsrepl.c +++ b/source4/libcli/wrepl/winsrepl.c @@ -373,7 +373,7 @@ struct tevent_req *wrepl_request_send(TALLOC_CTX *mem_ctx, return tevent_req_post(req, ev); } - state->req.iov.iov_base = state->req.blob.data; + state->req.iov.iov_base = (char *) state->req.blob.data; state->req.iov.iov_len = state->req.blob.length; ok = tevent_queue_add(wrepl_socket->request_queue, -- cgit