mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/tcp: fix pointer to int warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
59360cd456
commit
22fbc7f8be
@ -127,7 +127,7 @@ static int tcp_open(URLContext *h, const char *uri, int flags)
|
||||
}
|
||||
} else {
|
||||
if ((ret = ff_listen_connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
|
||||
s->open_timeout / 1000, h, cur_ai->ai_next)) < 0) {
|
||||
s->open_timeout / 1000, h, !!cur_ai->ai_next)) < 0) {
|
||||
|
||||
if (ret == AVERROR_EXIT)
|
||||
goto fail1;
|
||||
|
Loading…
Reference in New Issue
Block a user