Commit 5ff43ec7 authored by Michael Niedermayer's avatar Michael Niedermayer

sctp: silence const warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 60e02895
......@@ -121,7 +121,7 @@ static int ff_sctp_send(int s, const void *msg, size_t len,
outmsg.msg_name = NULL;
outmsg.msg_namelen = 0;
outmsg.msg_iov = &iov;
iov.iov_base = msg;
iov.iov_base = (void*)msg;
iov.iov_len = len;
outmsg.msg_iovlen = 1;
outmsg.msg_controllen = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment