Commit 67f5ba1f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

access_attachment: kill a warning

parent 04cabfa4
......@@ -117,7 +117,7 @@ static ssize_t Read(access_t *access, uint8_t *buffer, size_t size)
{
access_sys_t *sys = access->p_sys;
access->info.b_eof = access->info.i_pos >= sys->a->i_data;
access->info.b_eof = access->info.i_pos >= (uint64_t)sys->a->i_data;
if (access->info.b_eof)
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