Commit 56cd0622 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

V4L2: don't whine in the logs on EINTR

parent f2757e09
...@@ -1288,7 +1288,8 @@ static ssize_t AccessReadStream( access_t * p_access, uint8_t * p_buffer, size_t ...@@ -1288,7 +1288,8 @@ static ssize_t AccessReadStream( access_t * p_access, uint8_t * p_buffer, size_t
if( i_ret < 0 ) if( i_ret < 0 )
{ {
msg_Err( p_access, "Polling error (%m)." ); if( errno != EINTR )
msg_Err( p_access, "poll error" );
return -1; 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