mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Silence warning
This commit is contained in:
parent
aba17fdc92
commit
6f0874f2b1
1 changed files with 2 additions and 1 deletions
|
@ -225,7 +225,8 @@ int64_t cdfs_read_file(cdfs_file_t* file, void* buffer, uint64_t len)
|
|||
if (remaining >= len)
|
||||
{
|
||||
memcpy(buffer,
|
||||
&file->sector_buffer[file->current_sector_offset], len);
|
||||
&file->sector_buffer[file->current_sector_offset],
|
||||
(size_t)len);
|
||||
file->current_sector_offset += len;
|
||||
return len;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue