Commit aa179ba8 authored by Rafaël Carré's avatar Rafaël Carré

timeout is not an integer in bugfix

parent 3f8526bd
......@@ -1064,7 +1064,7 @@ static int NetFillBuffer( access_t *p_access )
timeout.tv_sec = 0;
timeout.tv_usec = 500000;
if( i_try * timeout > p_sys->i_timeout )
if( i_try * 500 > p_sys->i_timeout )
{
msg_Err(p_access, "no data received");
return -1;
......
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