Commit 17795d9f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

V4L2: don't whine in the logs on EINTR

(cherry picked from commit 56cd0622eb3976ce055cc5dfb8b1ce480c60c438)
parent 66d0503e
......@@ -1293,7 +1293,8 @@ static ssize_t AccessReadStream( access_t * p_access, uint8_t * p_buffer, size_t
if( i_ret < 0 )
{
msg_Err( p_access, "Polling error (%m)." );
if( errno != EINTR )
msg_Err( p_access, "poll error" );
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