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

Use ssize_t

parent 74fd4dd7
...@@ -252,7 +252,7 @@ static void Close (vlc_object_t * p_this) ...@@ -252,7 +252,7 @@ static void Close (vlc_object_t * p_this)
static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len ) static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
{ {
access_sys_t *p_sys = p_access->p_sys; access_sys_t *p_sys = p_access->p_sys;
int i_ret; ssize_t i_ret;
int fd = p_sys->fd; int fd = p_sys->fd;
#if !defined(WIN32) && !defined(UNDER_CE) #if !defined(WIN32) && !defined(UNDER_CE)
......
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