mirror of
https://git.proxmox.com/git/mirror_corosync
synced 2025-07-24 17:58:01 +00:00
Cast a const away in an iovector.
git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@2056 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
parent
7070e8ab6c
commit
0135d41ea1
@ -869,7 +869,7 @@ int coroipcs_dispatch_send (void *conn, const void *msg, size_t mlen)
|
||||
{
|
||||
struct iovec iov;
|
||||
|
||||
iov.iov_base = msg;
|
||||
iov.iov_base = (void *)msg;
|
||||
iov.iov_len = mlen;
|
||||
|
||||
msg_send_or_queue (conn, &iov, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user