mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
Use Unix::stat for sys$lstat().
This commit is contained in:
parent
509e5f9952
commit
3db8d7ae1a
5 changed files with 9 additions and 22 deletions
|
@ -69,7 +69,7 @@ DWORD handle(DWORD function, DWORD arg1, DWORD arg2, DWORD arg3)
|
|||
case Syscall::GetDirEntries:
|
||||
return current->sys$get_dir_entries((int)arg1, (void*)arg2, (size_t)arg3);
|
||||
case Syscall::PosixLstat:
|
||||
return current->sys$lstat((const char*)arg1, (void*)arg2);
|
||||
return current->sys$lstat((const char*)arg1, (Unix::stat*)arg2);
|
||||
case Syscall::PosixGetcwd:
|
||||
return current->sys$getcwd((char*)arg1, (size_t)arg2);
|
||||
case Syscall::PosixOpen:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue