mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 02:38:37 +12:00
C-style cast cleanup II
This commit is contained in:
parent
5b9df53c13
commit
ad9c9f0183
18 changed files with 314 additions and 308 deletions
|
@ -73,7 +73,7 @@ error_code sys_overlay_load_module_by_fd(vm::ptr<u32> ovlmid, u32 fd, u64 offset
|
|||
return CELL_ENOSYS;
|
||||
}
|
||||
|
||||
if ((s64)offset < 0)
|
||||
if (static_cast<s64>(offset) < 0)
|
||||
{
|
||||
return CELL_EINVAL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue