Browse Source

sctp: silence const warning

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 12 years ago
parent
commit
5ff43ec72d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/sctp.c

+ 1
- 1
libavformat/sctp.c View File

@@ -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;


Loading…
Cancel
Save