Commit 9b7132be authored by Laurent Aimar's avatar Laurent Aimar

* pvr: cosmetic.

parent 5584b125
...@@ -643,8 +643,7 @@ static void Close( vlc_object_t * p_this ) ...@@ -643,8 +643,7 @@ static void Close( vlc_object_t * p_this )
/***************************************************************************** /*****************************************************************************
* Read * Read
*****************************************************************************/ *****************************************************************************/
static int Read( access_t * p_access, uint8_t * p_buffer, static int Read( access_t * p_access, uint8_t * p_buffer, int i_len )
int i_len )
{ {
access_sys_t * p_sys = p_access->p_sys; access_sys_t * p_sys = p_access->p_sys;
...@@ -668,7 +667,7 @@ static int Read( access_t * p_access, uint8_t * p_buffer, ...@@ -668,7 +667,7 @@ static int Read( access_t * p_access, uint8_t * p_buffer,
timeout.tv_sec = 0; timeout.tv_sec = 0;
timeout.tv_usec = 500000; timeout.tv_usec = 500000;
if( p_access->b_die || p_access->b_error ) if( p_access->b_die )
return 0; return 0;
} }
......
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