mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 17:28:48 +00:00
FileSystem: Rename VFS::fchmod() -> chmod().
This commit is contained in:
parent
e67bfdb7f6
commit
a53c922f8a
Notes:
sideshowbarker
2024-07-19 13:47:10 +09:00
Author: https://github.com/awesomekling
Commit: a53c922f8a
3 changed files with 4 additions and 4 deletions
|
@ -88,7 +88,7 @@ KResult FileDescriptor::fchmod(mode_t mode)
|
|||
{
|
||||
if (!m_inode)
|
||||
return KResult(-EBADF);
|
||||
return VFS::the().fchmod(*m_inode, mode);
|
||||
return VFS::the().chmod(*m_inode, mode);
|
||||
}
|
||||
|
||||
off_t FileDescriptor::seek(off_t offset, int whence)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue