mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-24 03:12:30 +00:00
sys_fs: fix logging in sys_fs_get_block_size
This commit is contained in:
parent
d477889763
commit
9075208c80
1 changed files with 1 additions and 1 deletions
|
@ -1533,7 +1533,7 @@ error_code sys_fs_fget_block_size(ppu_thread& ppu, u32 fd, vm::ptr<u64> sector_s
|
||||||
|
|
||||||
error_code sys_fs_get_block_size(ppu_thread& ppu, vm::cptr<char> path, vm::ptr<u64> sector_size, vm::ptr<u64> block_size, vm::ptr<u64> arg4)
|
error_code sys_fs_get_block_size(ppu_thread& ppu, vm::cptr<char> path, vm::ptr<u64> sector_size, vm::ptr<u64> block_size, vm::ptr<u64> arg4)
|
||||||
{
|
{
|
||||||
sys_fs.warning("sys_fs_get_block_size(path=%s, sector_size=*0x%x, block_size=*0x%x, arg4=*0x%x, arg5=*0x%x)", path, sector_size, block_size, arg4);
|
sys_fs.warning("sys_fs_get_block_size(path=%s, sector_size=*0x%x, block_size=*0x%x, arg4=*0x%x)", path, sector_size, block_size, arg4);
|
||||||
|
|
||||||
if (!path)
|
if (!path)
|
||||||
return CELL_EFAULT;
|
return CELL_EFAULT;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue