mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-10 02:30:12 +01:00
Log sys_ftruncate
This commit is contained in:
parent
907905b6ff
commit
3e10dac4dc
|
|
@ -64,6 +64,7 @@ orbis::SysResult orbis::sys_pwritev(Thread *thread, sint fd,
|
|||
return ErrorCode::NOSYS;
|
||||
}
|
||||
orbis::SysResult orbis::sys_ftruncate(Thread *thread, sint fd, off_t length) {
|
||||
ORBIS_LOG_WARNING(__FUNCTION__, fd, length);
|
||||
if (auto ftruncate = thread->tproc->ops->ftruncate) {
|
||||
return ftruncate(thread, fd, length);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue