mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 14:58:46 +00:00
Some coding style fixes. I'm getting more comfortable with this style.
This commit is contained in:
parent
7d13432b55
commit
407bb3e76e
Notes:
sideshowbarker
2024-07-19 16:09:12 +09:00
Author: https://github.com/awesomekling
Commit: 407bb3e76e
13 changed files with 207 additions and 207 deletions
|
@ -127,12 +127,12 @@ const char* SynthFS::class_name() const
|
|||
return "synthfs";
|
||||
}
|
||||
|
||||
InodeIdentifier SynthFS::rootInode() const
|
||||
InodeIdentifier SynthFS::root_inode() const
|
||||
{
|
||||
return { id(), 1 };
|
||||
}
|
||||
|
||||
InodeMetadata SynthFS::inodeMetadata(InodeIdentifier inode) const
|
||||
InodeMetadata SynthFS::inode_metadata(InodeIdentifier inode) const
|
||||
{
|
||||
InterruptDisabler disabler;
|
||||
ASSERT(inode.fsid() == id());
|
||||
|
@ -164,7 +164,7 @@ InodeIdentifier SynthFS::create_inode(InodeIdentifier parentInode, const String&
|
|||
return { };
|
||||
}
|
||||
|
||||
bool SynthFS::writeInode(InodeIdentifier, const ByteBuffer&)
|
||||
bool SynthFS::write_inode(InodeIdentifier, const ByteBuffer&)
|
||||
{
|
||||
kprintf("FIXME: Implement SyntheticFileSystem::writeInode().\n");
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue