]> git.sesse.net Git - vlc/blobdiff - modules/access/v4l2.c
DTV: don't use NULL for config items
[vlc] / modules / access / v4l2.c
index 5a5c888ee8d3b01e804727d93731cef2bfcd74d1..0654e4ab3a75c19a2fd8f206a998a4fbe6aa4905 100644 (file)
@@ -1288,7 +1288,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;
     }