mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-17 23:17:41 +08:00
sctp: silence const warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user