mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
fix some warnings
This commit is contained in:
parent
60e7e5be8d
commit
b564441097
@ -1421,7 +1421,7 @@ bool cdrom_set_read_cache(const libretro_vfs_implementation_file *stream, bool e
|
||||
#ifdef CDROM_DEBUG
|
||||
printf("Mode sense data for caching mode page: ");
|
||||
|
||||
for (i = 0; i < sizeof(buf); i++)
|
||||
for (i = 0; i < (int)sizeof(buf); i++)
|
||||
{
|
||||
printf("%02X ", buf[i]);
|
||||
}
|
||||
@ -1482,7 +1482,7 @@ bool cdrom_get_timeouts(libretro_vfs_implementation_file *stream, cdrom_group_ti
|
||||
#ifdef CDROM_DEBUG
|
||||
printf("Mode sense data for timeout groups: ");
|
||||
|
||||
for (i = 0; i < sizeof(buf); i++)
|
||||
for (i = 0; i < (int)sizeof(buf); i++)
|
||||
{
|
||||
printf("%02X ", buf[i]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user