Commit c3b5ea75 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/tcp: Fix the type of the optlen argument to getsockopt().

Fixes a warning on aix:
libavformat/tcp.c:283:58: warning: passing argument 5 of 'getsockopt' from incompatible pointer type
parent 7c9f739d
......@@ -275,7 +275,7 @@ static int tcp_get_window_size(URLContext *h)
{
TCPContext *s = h->priv_data;
int avail;
int avail_len = sizeof(avail);
socklen_t avail_len = sizeof(avail);
#if HAVE_WINSOCK2_H
/* SO_RCVBUF with winsock only reports the actual TCP window size when
......
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