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

mtp: remove write-only datum

parent 806d4259
...@@ -75,7 +75,6 @@ static int open_file( access_t *, const char * ); ...@@ -75,7 +75,6 @@ static int open_file( access_t *, const char * );
struct access_sys_t struct access_sys_t
{ {
unsigned int i_nb_reads;
int fd; int fd;
}; };
...@@ -141,7 +140,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -141,7 +140,6 @@ static int Open( vlc_object_t *p_this )
free( p_rawdevices ); free( p_rawdevices );
STANDARD_READ_ACCESS_INIT; STANDARD_READ_ACCESS_INIT;
p_sys->i_nb_reads = 0;
int fd = p_sys->fd = -1; int fd = p_sys->fd = -1;
/* Open file */ /* Open file */
...@@ -210,8 +208,6 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len ) ...@@ -210,8 +208,6 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
else else
p_access->info.b_eof = true; p_access->info.b_eof = true;
p_sys->i_nb_reads++;
return i_ret; return i_ret;
} }
......
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